aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-typescript/release/types.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/gulp-typescript/release/types.d.ts')
-rw-r--r--node_modules/gulp-typescript/release/types.d.ts28
1 files changed, 28 insertions, 0 deletions
diff --git a/node_modules/gulp-typescript/release/types.d.ts b/node_modules/gulp-typescript/release/types.d.ts
new file mode 100644
index 000000000..8b19cf69a
--- /dev/null
+++ b/node_modules/gulp-typescript/release/types.d.ts
@@ -0,0 +1,28 @@
+export interface TsConfig {
+ files?: string[];
+ include?: string[];
+ exclude?: string[];
+ compilerOptions?: any;
+}
+export interface VinylFile {
+ cwd: string;
+ base: string;
+ path: string;
+ stat: {};
+ contents: {};
+ sourceMap?: any;
+ relative: string;
+ isBuffer(): boolean;
+ isStream(): boolean;
+ isNull(): boolean;
+ isDirectory(): boolean;
+}
+export interface RawSourceMap {
+ file?: string;
+ sourceRoot?: string;
+ version: string;
+ sources: string[];
+ names: string[];
+ sourcesContent?: string;
+ mappings: string;
+}