@pdf-viewer/react
Version:
A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.
25 lines (24 loc) • 587 B
TypeScript
declare class Console {
private static instance;
private isProduction;
private constructor();
static getInstance(): Console;
/**
* Debug level logging - stripped in production
*/
debug(...args: any[]): void;
/**
* Info level logging - kept in production
*/
info(...args: any[]): void;
/**
* Warning level logging - kept in production
*/
warn(...args: any[]): void;
/**
* Error level logging - kept in production
*/
error(...args: any[]): void;
}
export declare const appConsole: Console;
export {};