// Type definitions for gulp-rev-replace v0.2.1 // Project: https://github.com/jamesknelson/gulp-rev-replace // Definitions by: Tanguy Krotoff // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 /// declare namespace revReplace { interface Options { canonicalUris?: boolean; replaceInExtensions?: Array; prefix?: string; manifest?: NodeJS.ReadWriteStream; modifyUnreved?: Function; modifyReved?: Function; } } declare function revReplace(options?: revReplace.Options): NodeJS.ReadWriteStream; export = revReplace;