vscode/build/lib/typings/gulp-filter.d.ts
2015-11-13 14:39:38 +01:00

8 lines
185 B
TypeScript

declare module 'gulp-filter' {
import { ThroughStream } from 'through';
function fn(pattern: string): ThroughStream;
function fn(patterns: string[]): ThroughStream;
export = fn;
}