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.
15 lines (14 loc) • 395 B
TypeScript
import { ErrorCode } from './types.js';
export interface InitOptions {
dryRun?: boolean;
}
export interface InitResult {
success: boolean;
filesCreated: number;
message: string;
createdFiles?: string[];
projectName?: string;
dryRun?: boolean;
errorCode?: ErrorCode;
}
export declare function init(projectPath: string, options?: InitOptions): Promise<InitResult>;