Skip to content

Commit

Permalink
Change doc config to include asynciterator declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonVanneste committed Feb 12, 2019
1 parent 9e73698 commit 800acae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Planner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<IPath> {
this.emit(EventType.Query, query);
Expand Down
4 changes: 2 additions & 2 deletions typedoc.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
mode: 'file',
excludePrivate: true,
excludeNotExported: false,
excludeExternals: false,
includeDeclarations: false,
excludeExternals: true,
includeDeclarations: true,
theme: 'minimal',
};

0 comments on commit 800acae

Please sign in to comment.