Add array as local settings type

This commit is contained in:
jeffvli 2022-12-09 19:02:52 -08:00
parent c060df6d22
commit f41f557493

View File

@ -3,7 +3,7 @@ import { app, ipcRenderer } from 'electron';
const store = new Store();
const set = (property: string, value: string | Record<string, unknown> | boolean) => {
const set = (property: string, value: string | Record<string, unknown> | boolean | string[]) => {
store.set(`${property}`, value);
};