-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathconsolidate.d.ts
23 lines (22 loc) · 1.21 KB
/
consolidate.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// <reference path="node.d.ts" />
declare module "consolidate" {
export var clearCache:() => void;
export var jade:(path:String, options: any, fn: any) => void;
export var dust:(path:String, options: any, fn: any) => void;
export var swig:(path:String, options: any, fn: any) => void;
export var liquor:(path:String, options: any, fn: any) => void;
export var ejs:(path:String, options: any, fn: any) => void;
export var eco:(path:String, options: any, fn: any) => void;
export var jazz:(path:String, options: any, fn: any) => void;
export var jqtpl:(path:String, options: any, fn: any) => void;
export var haml:(path:String, options: any, fn: any) => void;
export var whiskers:(path:String, options: any, fn: any) => void;
//export var 'haml-coffee':Function;
export var hogan:(path:String, options: any, fn: any) => void;
export var handlebars:(path:String, options: any, fn: any) => void;
export var underscore:(path:String, options: any, fn: any) => void;
export var qejs:(path:String, options: any, fn: any) => void;
export var walrus:(path:String, options: any, fn: any) => void;
export var mustache:(path:String, options: any, fn: any) => void;
export var dot:(path:String, options: any, fn: any) => void;
}