UNPKG

@iredium/butterfly

Version:
9 lines (8 loc) 327 B
import { Database } from "./database"; export declare class Redis extends Database { name: string; get(key: string, callback?: Function | null): Promise<string>; set(key: any, value: any, expireTimeInMiliseconds?: null, callback?: Function | null): Promise<void>; connect(): Promise<void>; close(): void; }