DefinitelyTyped/types/catbox-redis/catbox-redis-tests.ts
2018-10-22 11:56:04 -04:00

18 lines
273 B
TypeScript

import * as CatbotRedis from 'catbox-redis';
const cache = new CatbotRedis<string>({
host: 'localhost',
partition: 'test',
port: 2018,
});
cache.get({
segment: 'test',
id: 'test',
});
cache.set({
segment: 'test',
id: 'test',
}, 'test', 123);