Skip to content

Commit 0dbdd8f

Browse files
committed
Fixed type issues
1 parent 878d3dd commit 0dbdd8f

20 files changed

+87
-71
lines changed

dist/actions.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/interfaces.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export interface VuexModuleInternalsPrototype {
2929
__mutations_cache__: {
3030
__explicit_mutations__: {};
3131
__setter_mutations__: {};
32-
};
32+
} | undefined;
3333
__explicit_getter_names__: string[];
34-
__decorator_getter_names__: string[];
34+
__decorator_getter_names__: string[] | undefined;
3535
__explicit_mutations_names__: string[];
3636
__actions__: {
3737
__name__: string;
3838
__type__: ActionType;
39-
}[];
39+
}[] | undefined;
4040
__watch__: Map;
4141
__store_cache__: any;
4242
}

dist/module.js

Lines changed: 19 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)