We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eeb3efe + 5e83d71 commit 16641d8Copy full SHA for 16641d8
src/storageWrappers/MMKVWrapper.ts
@@ -37,10 +37,6 @@ export class MMKVWrapper implements PersistentStorage<string | null> {
37
38
interface MMKVInterface {
39
set: (key: string, value: boolean | string | number) => void;
40
- getBoolean: (key: string) => boolean;
41
getString: (key: string) => string | undefined;
42
- getNumber: (key: string) => number;
43
delete: (key: string) => void;
44
- getAllKeys: () => string[];
45
- clearAll: () => void;
46
}
0 commit comments