mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
30 lines
715 B
TypeScript
30 lines
715 B
TypeScript
// Type definitions for gulp-typedoc
|
|
// Project: https://github.com/rogierschouten/gulp-typedoc
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
declare function typedoc(opts: Options): NodeJS.ReadWriteStream;
|
|
export = typedoc;
|