UNPKG

kkt

Version:

Create React apps with no build configuration, Cli tool for creating react apps.

14 lines (13 loc) 302 B
import { KKTRC } from './conf'; type CacheData = { proxySetup?: KKTRC['proxySetup']; } & Record<string, any>; /** * Cache data */ export declare const cacheData: (ops: CacheData) => void; /** * Get cache data */ export declare const getCacheData: (keyName?: keyof CacheData) => any; export {};