UNPKG

nodejs-logsage

Version:

Powerful logger module for NestJS, seamlessly integrating Pino and Winston for flexible logging with easy configuration.

9 lines (7 loc) 234 B
interface IDatabase<K extends IDBKeyType, T> { get(id: K): T | undefined; set(id: K, value: T, expiry: number): void; del(id: K): void; } type IDBKeyType = string | number | symbol; export type { IDBKeyType, IDatabase };