12 lines
No EOL
180 B
TypeScript
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"
|
|
}); |