UNPKG

create-claude-statusline

Version:

Beautiful, highly customizable status line for Claude Code with granular control over every element. Shows project info, git status, framework, and model.

18 lines (17 loc) 475 B
export declare enum LogLevel { ERROR = 0, WARN = 1, INFO = 2, DEBUG = 3 } export declare const logger: { error: (msg: string, ctx?: any) => void; warn: (msg: string, ctx?: any) => void; info: (msg: string, ctx?: any) => void; debug: (msg: string, ctx?: any) => void; operation: <T>(op: string, fn: () => Promise<T>) => Promise<T>; }; export declare function configureLogger(options: { level?: LogLevel; silent?: boolean; }): void;