mirror of
https://github.com/cdr/code-server.git
synced 2025-12-10 10:22:44 +01:00
18 lines
431 B
TypeScript
18 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;
|
|
|
|
}
|