UNPKG

@inlang/paraglide-js

Version:

[![NPM Downloads](https://img.shields.io/npm/dw/%40inlang%2Fparaglide-js?logo=npm&logoColor=red&label=npm%20downloads)](https://www.npmjs.com/package/@inlang/paraglide-js) [![GitHub Issues](https://img.shields.io/github/issues-closed/opral/paraglide-js?lo

18 lines 548 B
export type LoggerOptions = { silent: boolean; /** * If the [paraglide] prefix should be printed before each log message. */ prefix: boolean; }; export declare class Logger { private options; constructor(options?: LoggerOptions); log(message: string): Logger; info(message: string): Logger; success(message: string): Logger; warn(message: any, ...args: any[]): Logger; error(message: any, ...args: any[]): Logger; box(message: any, ...args: any[]): Logger; } //# sourceMappingURL=index.d.ts.map