UNPKG

node-redis-connection-pool

Version:

Simplistic node redis connection pool 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;