export interface IRedisGlobalOptions { ListKey?: string | string[]; } export interface ISetOptions extends IRedisGlobalOptions { isExpire?: boolean; expire?: number; } export type IDelOptions = IRedisGlobalOptions;