UNPKG

397 BTypeScriptView Raw
1declare module "*.json" {
2 interface IJson { [key: string]: string }
3 const json: IJson;
4 export = json;
5}
6
7declare module "*.css" {
8 interface IClassNames {
9 [className: string]: string;
10 }
11 const classNames: IClassNames;
12 export = classNames;
13}
14
15interface Window {
16 __initialState: any;
17 lp: {
18 analytics: {
19 dataLayer: object[];
20 },
21 auth: any;
22 hosts: any;
23 };
24}