feat: remove ionic storage (#51)

This commit is contained in:
Alex Inkin
2022-10-04 02:55:46 +03:00
committed by Aiden McClelland
parent cb8998a79c
commit 5104086317
2 changed files with 4 additions and 4 deletions

View File

@@ -18,8 +18,8 @@ export enum PatchOp {
}
export interface Bootstrapper<T> {
init(): Promise<DBCache<T>>
update(cache: DBCache<T>): Promise<void>
init(): DBCache<T>
update(cache: DBCache<T>): void
}
export interface DBCache<T extends Record<string, any>> {