aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-typescript/release/output.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-typescript/release/output.d.ts')
-rw-r--r--node_modules/gulp-typescript/release/output.d.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/node_modules/gulp-typescript/release/output.d.ts b/node_modules/gulp-typescript/release/output.d.ts
new file mode 100644
index 000000000..7109b62f3
--- /dev/null
+++ b/node_modules/gulp-typescript/release/output.d.ts
@@ -0,0 +1,20 @@
+import * as stream from 'stream';
+import * as ts from 'typescript';
+import * as input from './input';
+import * as reporter from './reporter';
+import * as project from './project';
+export declare class Output {
+ constructor(_project: project.ProjectInfo, streamFull: stream.Readable, streamJs: stream.Readable, streamDts: stream.Readable);
+ project: project.ProjectInfo;
+ result: reporter.CompilationResult;
+ streamFull: stream.Readable;
+ streamJs: stream.Readable;
+ streamDts: stream.Readable;
+ writeJs(base: string, fileName: string, content: string, sourceMapContent: string, cwd: string, original: input.File): void;
+ writeDts(base: string, fileName: string, content: string, cwd: string): void;
+ private applySourceMap(sourceMapContent, original, output);
+ finish(result: reporter.CompilationResult): void;
+ private getError(info);
+ diagnostic(info: ts.Diagnostic): void;
+ error(error: reporter.TypeScriptError): void;
+}