Skip to content

Commit

Permalink
fix: type at build
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Nov 10, 2024
1 parent dd14921 commit 25d9237
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ export type Modify<Base, Mod> = Omit<Base, keyof Mod> & Mod;

export type StateTypesDefault = Record<string | number, any>;

export type UpdateData<T extends StateTypesDefault> = {
__state: T;
};
export type UpdateData<T extends StateTypesDefault> = {};

export interface ScenesOptions {
storage?: Storage;
Expand Down

0 comments on commit 25d9237

Please sign in to comment.