UNPKG

adr

Version:

轻量级架构记录工具 - Command-line tools for working with Architecture Decision Records

10 lines (9 loc) 279 B
declare function initCache(): void; declare function getCache(key?: string): any; declare function updateCache(key: string, value: unknown): void; declare let cache: { init: typeof initCache; get: typeof getCache; update: typeof updateCache; }; export default cache;