UNPKG

@strapi/pack-up

Version:

Simple tools for creating interoperable CJS & ESM packages.

17 lines (16 loc) 444 B
interface LoggerOptions { silent?: boolean; debug?: boolean; } export interface Logger { warnings: number; errors: number; debug: (...args: any[]) => void; info: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; log: (...args: any[]) => void; success: (...args: any[]) => void; } export declare const createLogger: (options?: LoggerOptions) => Logger; export {};