UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

15 lines (14 loc) 314 B
export interface CacheConfiguration { driver?: "memory" | "redis" | "memcached"; ttl?: number; redisConfig?: { host: string; port: number; password?: string; }; memcachedConfig?: { servers: string[]; options?: any; }; clearOnStartup?: boolean; }