-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.d.ts
54 lines (52 loc) · 1.21 KB
/
globals.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
declare module 'socket:os';
declare module 'socket:test';
declare module 'socket:console';
declare module 'socket:process';
declare interface Config {
build_env: string;
build_flags: string;
build_headless: boolean;
build_input: string;
build_name: string;
build_output: string;
build_redirect: Location | (string & Location);
build_script: string;
debug_flags: string;
ios_distribution_method: string;
ios_simulator_device: string;
linux_categories: string;
linux_cmd: string;
linux_icon: string;
mac_appstore_icon: string;
meta_bundle_identifier: string;
meta_copyright: string;
meta_description: string;
meta_file_limit: number;
meta_lang: string;
meta_maintainer: string;
meta_title: string;
meta_version: string;
native_files: string;
native_headers: string;
win_cmd: string;
win_logo: string;
win_pfx: string;
win_publisher: string;
window_height: string;
window_width: string;
}
// declare global {
// interface Window {
// __args: {
// argv: string[];
// config: Config;
// debug: number;
// env: {
// USER: string;
// TMPDIR: string;
// PWD: string;
// };
// index: number;
// };
// }
// }