-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.d.ts
40 lines (32 loc) · 940 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
/// <reference path="./types/scratch-vm.d.ts" />
/// <reference path="./types/scratch-render.d.ts" />
/// <reference path="./types/scratch-svg-renderer.d.ts" />
/// <reference path="./types/scratch-render-fonts.d.ts" />
/// <reference path="./types/scratch-audio.d.ts" />
/// <reference path="./types/scratch-storage.d.ts" />
/// <reference path="./types/scratch-parser.d.ts" />
/// <reference path="./types/scratch-blocks.d.ts" />
declare module 'scratch-vm' {
export = VM;
}
declare module 'scratch-render' {
export = RenderWebGL;
}
declare module 'scratch-svg-renderer' {
export = ScratchSVGRenderer;
}
declare module 'scratch-render-fonts' {
export = ScratchRenderFonts;
}
declare module 'scratch-audio' {
export = AudioEngine;
}
declare module 'scratch-storage' {
export = ScratchStorage;
}
declare module 'scratch-parser' {
export = ScratchParser;
}
declare module 'scratch-blocks' {
export = ScratchBlocks;
}