Skip to content

Commit b5eaf1f

Browse files
committed
fix type errors for updated lume/cli
1 parent a38d680 commit b5eaf1f

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

dist/BehaviorMap.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export declare class BehaviorMap extends Map<string, PossibleBehaviorInstance> {
1212
delete(key: string): boolean;
1313
clear(): void;
1414
has(key: string): boolean;
15-
entries(): IterableIterator<[string, PossibleBehaviorInstance]>;
16-
[Symbol.iterator](): IterableIterator<[string, PossibleBehaviorInstance]>;
15+
entries(): MapIterator<[string, PossibleBehaviorInstance]>;
16+
[Symbol.iterator](): MapIterator<[string, PossibleBehaviorInstance]>;
1717
forEach(callbackfn: (value: PossibleBehaviorInstance, key: string, map: Map<string, PossibleBehaviorInstance>) => void, thisArg?: any): void;
18-
keys(): IterableIterator<string>;
18+
keys(): MapIterator<string>;
1919
get size(): number;
2020
set size(n: number);
2121
}

dist/BehaviorMap.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/BehaviorMap.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/BehaviorRegistry.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/CancelablePromise.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)