UNPKG

302 BTypeScriptView Raw
1declare module 'vinyl-fs-fake' {
2 import * as vinyl from 'vinyl-fs';
3 import * as stream from 'stream';
4
5 export interface File {
6 path: string;
7 contents: string;
8 }
9 export interface Options { cwdbase: boolean; }
10 export function src(files: File[], options?: Options): stream.Readable;
11}