diff --git a/flow-custom-typedefs/electron-store.js b/flow-custom-typedefs/electron-store.js index d01bd5d..70492a4 100644 --- a/flow-custom-typedefs/electron-store.js +++ b/flow-custom-typedefs/electron-store.js @@ -10,9 +10,9 @@ declare module 'electron-store' { fileExtension?: string, }): ElectronStore; - set(key: string, value: string): void; + set(key: string, value: any): void; set(payload: Object): void; - get(key: string): string; + get(key: string): any; has(key: string): boolean; delete(key: string): void; clear(): void;