/** * @public */ export interface IHttpCacheTTL { isValid(key: string): boolean; set(key: string, ttl?: number): void; delete(key: string): void; } //# sourceMappingURL=IHttpCacheTTL.d.ts.map