vscode/build/lib/typings/gulp-filter.d.ts

8 lines
185 B
TypeScript
Raw Normal View History

2015-11-13 13:39:38 +00:00
declare module 'gulp-filter' {
import { ThroughStream } from 'through';
function fn(pattern: string): ThroughStream;
function fn(patterns: string[]): ThroughStream;
export = fn;
}