RenaiApp/src/main/modules/store/i-store.ts

5 lines
130 B
TypeScript

export interface IStore {
load: (key: StoreKey) => Promise<unknown>;
save: (key: StoreKey, data: unknown) => Promise<void>;
}