| 10 | const STORE_NAME = "refine-update-notifier"; |
| 11 | |
| 12 | export interface Store { |
| 13 | key: string; |
| 14 | lastUpdated: number; |
| 15 | packages: RefinePackageInstalledVersionData[]; |
| 16 | } |
| 17 | |
| 18 | export const store = new Conf<Store>({ |
| 19 | projectName: STORE_NAME, |
nothing calls this directly
no outgoing calls
no test coverage detected