mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-31 11:07:32 +08:00
Merge pull request #21747 from TeamworkGuy2/master
[lokijs] update to lokijs@1.5.1
This commit is contained in:
2825
types/lokijs/index.d.ts
vendored
2825
types/lokijs/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
@@ -37,10 +37,10 @@ class QueenAnt extends Ant {
|
||||
|
||||
|
||||
class AntColony {
|
||||
ants: LokiCollection<Ant>;
|
||||
queens: LokiCollection<QueenAnt>;
|
||||
ants: Loki.Collection<Ant>;
|
||||
queens: Loki.Collection<QueenAnt>;
|
||||
|
||||
constructor(ants?: LokiCollection<Ant>, queens?: LokiCollection<QueenAnt>) {
|
||||
constructor(ants: Loki.Collection<Ant>, queens: Loki.Collection<QueenAnt>) {
|
||||
this.ants = ants;
|
||||
this.queens = queens;
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": false,
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
|
||||
Reference in New Issue
Block a user