Skip to content

Commit 31bb653

Browse files
committed
Use LF
1 parent 8230a34 commit 31bb653

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Auto detect text files and perform LF normalization
2-
* text=auto
2+
* text eol=LF

src/GlobalRegistry.d.ts

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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';
99

1010
// import modules here, e.g.
1111

@@ -17,7 +17,6 @@ import VectorUtil from "Shared/VectorUtil";
1717
// import myController = require('Client/Controllers/myController');
1818
// import myClientModule = require('Client/Modules/myClientModule');
1919

20-
2120
declare global {
2221
// put all shared stuff here
2322
interface shared {
@@ -38,25 +37,24 @@ declare global {
3837
services: {
3938
// service: serviceImport
4039
// e.g. myService: typeof myService;
41-
},
42-
40+
};
4341

4442
modules: {
4543
// module: moduleImport
4644
// e.g. myServerModule: typeof myServerModule
47-
}
45+
};
4846
}
4947

5048
// put all client stuff here
5149
interface client {
5250
controllers: {
5351
// controller: controllerImport
5452
// e.g. myController: typeof myController
55-
},
53+
};
5654

5755
modules: {
5856
// module: moduleImport
5957
// e.g. myClientModule: typeof myClientModule
60-
}
58+
};
6159
}
62-
}
60+
}

0 commit comments

Comments
 (0)