aboutsummaryrefslogtreecommitdiff
path: root/node_modules/gulp-typescript/release/types.d.ts
blob: 8b19cf69aff10b6423cff4d5fdaa9a451cc47281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}