nonut
Version:
gulp-fn - gulp plugin used in order to run custom callback functions per file
15 lines (11 loc) • 465 B
TypeScript
// Type definitions for gulp-fn v 0.0.3
// Project: https://github.com/ThierrySpetebroot/gulp-fn
// Definitions by: Thierry Spetebroot <https://github.com/ThierrySpetebroot> (http://tspetebr.me)
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node"/>
import { Transform } from "stream";
declare function gulpFn(
fn: (this: Transform, file: NodeJS.ReadWriteStream) => void,
filter?
): Transform;
export = gulpFn;