type(electron-store): fix typedefs

This commit is contained in:
George Lima 2019-02-11 10:52:51 -03:00
parent be3d3d38c7
commit 0d3e535ea5
1 changed files with 2 additions and 2 deletions

View File

@ -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;