1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-21 22:58:46 +00:00
code-server-2/lib/vscode/build/lib/typings/gulp-tsb.d.ts

19 lines
431 B
TypeScript

declare module "gulp-tsb" {
export interface ICancellationToken {
isCancellationRequested(): boolean;
}
export interface IncrementalCompiler {
(token?: ICancellationToken): NodeJS.ReadWriteStream;
src(opts?: {
cwd?: string;
base?: string;
}): NodeJS.ReadStream;
}
export function create(projectPath: string, existingOptions: any, verbose?: boolean, onError?: (message: any) => void): IncrementalCompiler;
}