forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulp-useref.d.ts
More file actions
24 lines (20 loc) · 739 Bytes
/
gulp-useref.d.ts
File metadata and controls
24 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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 path="../node/node.d.ts" />
declare module 'gulp-useref' {
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;
}
var useref: Useref;
export = useref;
}