16 lines
226 B
TypeScript
16 lines
226 B
TypeScript
|
|
const Store = require('electron-store');
|
|
|
|
const schema = {
|
|
key: {
|
|
type: 'string',
|
|
},
|
|
crimataId: {
|
|
type: 'string'
|
|
}
|
|
};
|
|
|
|
export const store = new Store({
|
|
schema,
|
|
encryptionKey: "super user test"
|
|
});
|