UNPKG

@mindfiredigital/pivothead

Version:

PivotHead is a powerful and flexible library for creating interactive pivot tables in JavaScript applications. It provides a core engine for data manipulation and, in the future, will be compatible with wrappers for React, Vue, Svelte, and Angular, making

19 lines 752 B
/** * Logger for @mindfiredigital/pivothead * * Uses Winston when running in Node.js (CJS context). Falls back to a * structured console-based logger in browser / ESM environments so the * package stays bundle-safe and works without winston installed. * * Log level is controlled by the LOG_LEVEL environment variable * (default: "info"). Accepted values: error | warn | info | debug. * * Winston is an optional peer dependency. Install it to get structured * log formatting, multiple transports, and full Winston features: * * npm install winston */ import type { PivotLogger, LogMethod } from '../types/interfaces'; export type { PivotLogger, LogMethod }; export declare const logger: PivotLogger; //# sourceMappingURL=logger.d.ts.map