Skip to content

Commit 16641d8

Browse files
authored
Merge pull request #462 from Titozzz/patch-2
fix(types): remove unused keys
2 parents eeb3efe + 5e83d71 commit 16641d8

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)