We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23b9d38 commit 638adb2Copy full SHA for 638adb2
src/job.ts
@@ -96,7 +96,7 @@ class Indexer {
96
}
97
98
class TravelTypeIndexer extends Indexer {
99
- protected indexes: Record<string, Path[]>;
+ protected declare indexes: Record<string, Path[]>;
100
constructor(indexes: Record<string, Path[]>) {
101
super(indexes);
102
@@ -116,7 +116,7 @@ class NonPlanarPathError extends NonApplicableIndexer {
116
117
118
class LayersIndexer extends Indexer {
119
- protected indexes: Path[][];
+ protected declare indexes: Path[][];
120
constructor(indexes: Path[][]) {
121
122
0 commit comments