mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
658 B
TypeScript
22 lines
658 B
TypeScript
// Type definitions for gulp-rev-replace v0.2.1
|
|
// Project: https://github.com/jamesknelson/gulp-rev-replace
|
|
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="../node/node.d.ts" />
|
|
|
|
declare module 'gulp-rev-replace' {
|
|
interface IOptions {
|
|
canonicalUris?: boolean;
|
|
replaceInExtensions?: Array<string>;
|
|
prefix?: string;
|
|
manifest?: NodeJS.ReadWriteStream;
|
|
modifyUnreved?: Function;
|
|
modifyReved?: Function;
|
|
}
|
|
|
|
function revReplace(options?: IOptions): NodeJS.ReadWriteStream;
|
|
|
|
export = revReplace;
|
|
}
|