mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
// Type definitions for gulp-typescript
|
|
// Project: https://github.com/ivogabe/gulp-typescript
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts"/>
|
|
|
|
declare module "gulp-typescript" {
|
|
function GulpTypescript(params: GulpTypescript.Params, filters?: GulpTypescript.FilterSettings, reporter?: GulpTypescript.Reporter): GulpTypescript.CompilationStream;
|
|
|
|
module GulpTypescript {
|
|
export function createProject(params: Params): Params;
|
|
export function filter(filters: FilterSettings): CompilationStream;
|
|
interface Params {
|
|
declarationFiles?: boolean;
|
|
module?: string;
|
|
noEmitOnError?: boolean;
|
|
noExternalResolve?: boolean;
|
|
noImplicitAny?: boolean;
|
|
noLib?: boolean;
|
|
removeComments?: boolean;
|
|
sourceRoot?: string;
|
|
sortOutput?: boolean;
|
|
target?: string;
|
|
}
|
|
|
|
interface FilterSettings {
|
|
referencedFrom?: string[];
|
|
}
|
|
|
|
interface Reporter {
|
|
error(error: any): void;
|
|
}
|
|
|
|
interface CompilationStream extends NodeJS.ReadWriteStream {
|
|
dts: NodeJS.ReadWriteStream;
|
|
js: NodeJS.ReadWriteStream;
|
|
}
|
|
|
|
module reporter {
|
|
function nullReporter(): Reporter;
|
|
function defaultReporter(): Reporter;
|
|
function fullReporter(showFullFilename?: boolean): Reporter;
|
|
}
|
|
}
|
|
|
|
export = GulpTypescript;
|
|
} |