UNPKG

@shutootaki/gwm

Version:
20 lines 593 B
/** * ロガーインターフェース */ export interface Logger { success: (message: string) => void; error: (message: string) => void; info: (message: string) => void; warn: (message: string) => void; } /** * 色付きログユーティリティを作成 * * @param suppressInTest true の場合、テスト環境ではログを出力しない */ export declare function createLogger(suppressInTest?: boolean): Logger; /** * デフォルトロガー(テスト環境では出力抑制) */ export declare const logger: Logger; //# sourceMappingURL=logger.d.ts.map