claude-statusline-powerline
Version:
Beautiful powerline-style statusline for Claude Code with git integration, session tracking, and cost monitoring
28 lines • 952 B
TypeScript
import { ModelPricing, SegmentsConfiguration, StatuslineConfig } from './types';
export declare const DEFAULT_SEGMENTS_CONFIG: SegmentsConfiguration;
export declare const DEFAULT_CONFIG: StatuslineConfig;
export declare function get_config_path(): string;
export declare const DEFAULT_CONFIG_TEMPLATE: {
color_theme: string;
font_profile: string;
segment_config: {
segments: ({
type: string;
style: {
bg_color: string;
fg_color: string;
separator: {
style: string;
color: string;
};
};
} | {
type: string;
style?: undefined;
})[];
};
};
export declare function load_config(): StatuslineConfig;
export declare const MODEL_PRICING: Record<string, ModelPricing>;
export declare const DEFAULT_PRICING: ModelPricing;
//# sourceMappingURL=config.d.ts.map