UNPKG

devfty

Version:

Devfty is a library for developer building low code factory

9 lines (8 loc) 201 B
declare class CacheUtil { cache: any; constructor(); setCache(key: string, value: any): void; getCache(key: string): any; clearCache(key: string): void; } export default CacheUtil;