DefinitelyTyped/gulp-replace/gulp-replace.d.ts
Phips Peter afdc4fb569 Adding a function for gulp-replace
Adding a function for replacing strings.
2015-03-08 10:42:04 -07:00

21 lines
639 B
TypeScript

// Type definitions for gulp-replace
// Project: https://github.com/lazd/gulp-replace
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts"/>
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;
export = replace;
}