// Type definitions for gulp-replace // Project: https://github.com/lazd/gulp-replace // Definitions by: Asana // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// declare module "gulp-replace" { interface Options { skipBinary?: boolean; } interface Replacer { (match: string): string } function replace(pattern: string, replacement: string | Replacer, opts?: Options): NodeJS.ReadWriteStream; function replace(pattern: RegExp, replacement: string | Replacer, opts?: Options): NodeJS.ReadWriteStream; namespace replace {} export = replace; }