-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtypings.d.ts
More file actions
31 lines (25 loc) · 729 Bytes
/
typings.d.ts
File metadata and controls
31 lines (25 loc) · 729 Bytes
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
/// <reference path="typings/main.d.ts" />
declare const ROOT_DIR: string;
declare const SRC_DIR: string;
declare const DIST_DIR: string;
declare const PUBLIC_DIR: string;
declare const PRIVATE_DIR: string;
declare const SERVER_DIR: string;
declare const HOST: string;
declare const PORT: number;
declare const HAS_SS: boolean;
declare const HAS_WW: boolean;
declare const VENDOR_NAME: string;
declare const SERVER_NAME: string;
declare const BROWSER_NAME: string;
declare const WORKER_NAME: string;
declare const WORKER_APP_NAME: string;
declare const NODE_MODULES: string[];
declare const PREBOOT: {
appRoot: string,
freeze: any,
replay: string,
buffer: boolean,
debug: boolean,
uglify: boolean,
};