UNPKG

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