This commit is contained in:
syuilo 2017-02-08 14:33:10 +09:00
parent 10356019ed
commit 2b945cac3a

View File

@ -30,7 +30,7 @@ summaly(url[, opts])
``` typescript ``` typescript
interface IPlugin { interface IPlugin {
test: (url: URL.Url) => boolean; test: (url: URL.Url) => boolean;
summary: (url: URL.Url) => Promise<ISummary>; summarize: (url: URL.Url) => Promise<Summary>;
} }
``` ```