2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/utils/config.ts
18alantom 4415c04a88 chore: enable typescript eslint rules
- refactor code to satisfy rules (batch 1)
- use ensuredir in build to prevent ENOENT
2023-06-21 16:08:47 +05:30

6 lines
148 B
TypeScript

import Store from 'electron-store';
import type { ConfigMap } from 'fyo/core/types';
const config = new Store<ConfigMap>();
export default config;