Welcome to mirror list, hosted at ThFree Co, Russian Federation.

custom.d.ts - github.com/jsxc/jsxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5293b7422bc268302531ed25e0d56fbbcb8c614 (plain)
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
declare module '*.hbs' {
    // const content: any;
    // export default content;
    export default function template(options: any);
}

declare module '*.png' {
    const content: string;
    export default content;
}
declare module '*.mp3' {
    const content: string;
    export default content;
}
declare module '*.wav' {
    const content: string;
    export default content;
}
declare module '*.js?path' { }
declare module '*.svg' {
    const content: string;
    export default content;
}

declare var __webpack_public_path__: string;
declare var __VERSION__: string;
declare var __BUILD_DATE__: string;
declare var __BUNDLE_NAME__: string;
declare var __DEPENDENCIES__: string;
declare let __LANGS__: string[];