mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
24 lines
651 B
TypeScript
24 lines
651 B
TypeScript
// Type definitions for gulp-useref v3.0.0
|
|
// Project: https://github.com/jonkemp/gulp-useref
|
|
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node" />
|
|
|
|
|
|
interface Options {
|
|
searchPath?: string | string[];
|
|
base?: string;
|
|
noAssets?: boolean;
|
|
noconcat?: boolean;
|
|
additionalStreams?: Array<NodeJS.ReadWriteStream>;
|
|
transformPath?: (filePath: string) => void;
|
|
}
|
|
|
|
interface Useref {
|
|
(options?: Options, ...transformStreams: NodeJS.ReadWriteStream[]): NodeJS.ReadWriteStream;
|
|
}
|
|
|
|
declare var useref: Useref;
|
|
export = useref;
|