Skip to content

Commit 5e83d71

Browse files
authored
fix(types): remove unused keys
Do not limit unused keys, their types don't match anymore and there is no need to have them.
1 parent eeb3efe commit 5e83d71

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/storageWrappers/MMKVWrapper.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ export class MMKVWrapper implements PersistentStorage<string | null> {
3737

3838
interface MMKVInterface {
3939
set: (key: string, value: boolean | string | number) => void;
40-
getBoolean: (key: string) => boolean;
4140
getString: (key: string) => string | undefined;
42-
getNumber: (key: string) => number;
4341
delete: (key: string) => void;
44-
getAllKeys: () => string[];
45-
clearAll: () => void;
4642
}

0 commit comments

Comments
 (0)