diff --git a/src/Planner.ts b/src/Planner.ts index c76cfb4d..f3cfaa36 100644 --- a/src/Planner.ts +++ b/src/Planner.ts @@ -39,7 +39,7 @@ export default class Planner implements EventEmitter { /** * Given an [[IQuery]], it will evaluate the query and return a promise for an AsyncIterator of [[IPath]] instances * @param query An [[IQuery]] specifying a route planning query - * @returns An AsyncIterator of [[IPath]] instances + * @returns An [[AsyncIterator]] of [[IPath]] instances */ public query(query: IQuery): AsyncIterator { this.emit(EventType.Query, query); diff --git a/typedoc.config.js b/typedoc.config.js index fa7e335d..0947608e 100644 --- a/typedoc.config.js +++ b/typedoc.config.js @@ -11,7 +11,7 @@ module.exports = { mode: 'file', excludePrivate: true, excludeNotExported: false, - excludeExternals: false, - includeDeclarations: false, + excludeExternals: true, + includeDeclarations: true, theme: 'minimal', };