forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp-typedoc.d.ts
30 lines (27 loc) · 827 Bytes
/
gulp-typedoc.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Type definitions for gulp-typedoc
// Project: https://github.com/rogierschouten/gulp-typedoc
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts"/>
declare module "gulp-typedoc" {
interface Options {
out: string;
mode?: string;
json?: string;
exclude?: string;
includeDeclarations?: boolean;
externalPattern?: string;
excludeExternals?: boolean;
module?: string;
target?: string;
theme?: string;
name?: string;
readme?: string;
hideGenerator?: boolean;
gaID?: string;
gaSite?: string;
verbose?: boolean;
}
function typedoc(opts: Options): NodeJS.ReadWriteStream;
export = typedoc;
}