feat: Add common package * Add isEdge, safeTry and dataCache to new common package * Add eslint and move prettier config * Fix yarn lock * Clean up tests * Add lint-staged config to common * Add missing dependencies Approved-by: Joakim Jäderberg
6 lines
121 B
TypeScript
6 lines
121 B
TypeScript
import type { DataCache } from "./dataCache/Cache"
|
|
|
|
declare global {
|
|
var cacheClient: Promise<DataCache> | undefined
|
|
}
|