mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
|
|
|
|
declare module "gulp-tsb" {
|
|
|
|
export interface ICancellationToken {
|
|
isCancellationRequested(): boolean;
|
|
}
|
|
|
|
export interface IncrementalCompiler {
|
|
(token?:ICancellationToken): NodeJS.ReadWriteStream;
|
|
// program?: ts.Program;
|
|
}
|
|
|
|
export function create(configOrName: { [option: string]: string | number | boolean; } | string, verbose?: boolean, json?: boolean, onError?: (message: any) => void): IncrementalCompiler;
|
|
|
|
} |