1
- import Date from " Shared/Date" ;
2
- import Maid from " Shared/Maid" ;
3
- import Event from " Shared/Event" ;
4
- import Thread from " Shared/Thread" ;
5
- import Base64 from " Shared/Base64" ;
6
- import TableUtil from " Shared/TableUtil" ;
7
- import NumberUtil from " Shared/NumberUtil" ;
8
- import VectorUtil from " Shared/VectorUtil" ;
1
+ import Date from ' Shared/Date' ;
2
+ import Maid from ' Shared/Maid' ;
3
+ import Event from ' Shared/Event' ;
4
+ import Thread from ' Shared/Thread' ;
5
+ import Base64 from ' Shared/Base64' ;
6
+ import TableUtil from ' Shared/TableUtil' ;
7
+ import NumberUtil from ' Shared/NumberUtil' ;
8
+ import VectorUtil from ' Shared/VectorUtil' ;
9
9
10
10
// import modules here, e.g.
11
11
@@ -17,7 +17,6 @@ import VectorUtil from "Shared/VectorUtil";
17
17
// import myController = require('Client/Controllers/myController');
18
18
// import myClientModule = require('Client/Modules/myClientModule');
19
19
20
-
21
20
declare global {
22
21
// put all shared stuff here
23
22
interface shared {
@@ -38,25 +37,24 @@ declare global {
38
37
services : {
39
38
// service: serviceImport
40
39
// e.g. myService: typeof myService;
41
- } ,
42
-
40
+ } ;
43
41
44
42
modules : {
45
43
// module: moduleImport
46
44
// e.g. myServerModule: typeof myServerModule
47
- }
45
+ } ;
48
46
}
49
47
50
48
// put all client stuff here
51
49
interface client {
52
50
controllers : {
53
51
// controller: controllerImport
54
52
// e.g. myController: typeof myController
55
- } ,
53
+ } ;
56
54
57
55
modules : {
58
56
// module: moduleImport
59
57
// e.g. myClientModule: typeof myClientModule
60
- }
58
+ } ;
61
59
}
62
- }
60
+ }
0 commit comments