Skip to content

Commit

Permalink
fix type errors for updated lume/cli
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Sep 17, 2024
1 parent a38d680 commit b5eaf1f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions dist/BehaviorMap.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ export declare class BehaviorMap extends Map<string, PossibleBehaviorInstance> {
delete(key: string): boolean;
clear(): void;
has(key: string): boolean;
entries(): IterableIterator<[string, PossibleBehaviorInstance]>;
[Symbol.iterator](): IterableIterator<[string, PossibleBehaviorInstance]>;
entries(): MapIterator<[string, PossibleBehaviorInstance]>;
[Symbol.iterator](): MapIterator<[string, PossibleBehaviorInstance]>;
forEach(callbackfn: (value: PossibleBehaviorInstance, key: string, map: Map<string, PossibleBehaviorInstance>) => void, thisArg?: any): void;
keys(): IterableIterator<string>;
keys(): MapIterator<string>;
get size(): number;
set size(n: number);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/BehaviorMap.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/BehaviorMap.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/BehaviorRegistry.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/CancelablePromise.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b5eaf1f

Please sign in to comment.