mastercache
Version:
Multi-tier cache module for Node.js. Redis, Upstash, CloudfareKV, File, in-memory and others drivers
18 lines (15 loc) • 545 B
TypeScript
import { CacheDriver } from './types/driver.js';
import { CacheDriverOptions } from './types/options/options.js';
import './types/helpers.js';
import 'typescript-log';
import '../events-CkqPK7En.js';
import './types/bus.js';
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 };