UNPKG

@veams/plugin-logger

Version:

The VeamsLogger plugin disables `console` logs by default. You can provide parameters (`?devmode`) in the URL to show the logs in your console.

18 lines (17 loc) 292 B
/** * Interfaces */ export interface LoggerOptions { devmodeParam?: string; loggerParam?: string; } export interface Logger { options: LoggerOptions; pluginName: string; initialize: any; } /** * Plugin */ declare const VeamsLogger: Logger; export default VeamsLogger;