UNPKG

377 BTypeScriptView Raw
1interface SystemType {
2 import<T>(path: string): Promise<T>
3}
4
5declare const System: SystemType
6declare module '*.scss' {
7 const content: any;
8 export = content;
9}
10
11declare module '*.svg' {
12 const content: any;
13 export = content;
14}
15
16declare module '*.png' {
17 const content: any;
18 export = content;
19}
20
21declare module '*.jpg' {
22 const content: any;
23 export = content;
24}