UNPKG

tiny-essentials

Version:

Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.

8 lines 361 B
export default databaseLogger; declare namespace databaseLogger { function start(newDB: Record<string, any>, where: string): Promise<Record<string, any>>; function get(where: string): Record<string, any>; function changeCacheLimit(value: number): void; function setDebugMode(value: boolean): void; } //# sourceMappingURL=databaseLogger.d.mts.map