UNPKG

node-cache-redis

Version:

Simplistic node redis cache ready can scale with generic-pool support

19 lines (18 loc) 335 B
/** * @alias Logger */ export interface Logger { debug?: Function; log?: Function; info?: Function; warn?: Function; error?: Function; } declare const _default: (logger?: Logger) => { debug: Function; log: Function; info: Function; warn: Function; error: Function; }; export default _default;