mime-chat/src/composables/useStore.ts
2021-08-26 12:31:18 -05:00

12 lines
No EOL
180 B
TypeScript

const Store = require('electron-store');
const schema = {
token: {
type: 'string',
},
};
export const store = new Store({
schema,
encryptionKey: "super user test"
});