Files
DefinitelyTyped/gulp-typedoc/gulp-typedoc.d.ts
Phips Peter 429c0c5c7d Adding a bunch of gulp utilities
This should allow a developer to write a gulpfile in TypeScript to
compile a TypeScript project.
2015-01-28 17:23:29 -08:00

30 lines
827 B
TypeScript

// 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;
}