-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typings.d.ts
92 lines (69 loc) · 1.72 KB
/
typings.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
declare module "@workers/prettier.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "@workers/svgo.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "@workers/babel.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "@workers/postcss.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "@workers/graphql.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "@workers/svgr.worker" {
class WebpackWorker extends Worker {
constructor();
}
export default WebpackWorker;
}
declare module "*.md";
declare module "*.wiki";
declare module "*.json";
declare const importScripts: void;
declare const Babel;
declare const $;
declare const saveAs: (a, b) => void;
declare const _w3cub_vueToReact: (a, b) => string;
declare const _w3cub_reactToVue: (a, b) => [string, object];
declare const _ckeditor_ckeditor5BuildClassic: any;
declare const _ckeditor_ckeditor5React: any;
declare const html2canvas: any;
declare const minify: any;
declare const transPinyin: (a) => string;
declare const window = {
FileReader: any,
minify: any
};
declare module "@khanacademy/flow-to-ts";
declare namespace Favicon {
export namespace Package {
export interface GenerateResult {
ico: string;
png16: string;
png32: string;
png150: string;
png180: string;
png192: string;
png512: string;
}
function generate(s: HTMLCanvasElement): GenerateResult;
}
}