forked from oracle-commerce-cloud/occ-react-components.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
52 lines (41 loc) · 947 Bytes
/
index.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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/// <reference types="react-scripts" />
declare module "jquery" {
export = $;
}
declare module "knockout" {
import * as knockout from "knockout";
export = knockout;
}
declare module "pubsub" {
import * as pubsub from "pubsub";
export = pubsub;
}
declare module "notifier" {
import * as knockout from "notifier";
export = knockout;
}
declare module "ccConstants" {
import * as knockout from "ccConstants";
export = knockout;
}
declare module "ccRestClient" {
import * as knockout from "ccRestClient";
export = knockout;
}
declare module "ccLogger" {
import * as knockout from "ccLogger";
export = knockout;
}
declare module "pageLayout/product" {
import * as knockout from "pageLayout/product";
export = knockout;
}
declare module "*.less" {
const content: any;
export default content;
}
declare module "*.json" {
const content: any;
export default content;
}
declare var define: (any, any) => any;