mastercache
Version:
Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers
18 lines (15 loc) • 550 B
text/typescript
import { CacheDriver } from './types/driver.cjs';
import { CacheDriverOptions } from './types/options/options.cjs';
import './types/helpers.cjs';
import 'typescript-log';
import '../events-BJQnbTp3.cjs';
import './types/bus.cjs';
import '@boringnode/bus/types/main';
declare function registerCacheDriverTestSuite(options: {
createDriver: (options?: CacheDriverOptions) => CacheDriver<any>;
/**
* If the driver support milliseconds for TTLs
*/
supportsMilliseconds?: boolean;
}): void;
export { registerCacheDriverTestSuite };