mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-05-21 07:22:44 +00:00
25 lines
475 B
TypeScript
25 lines
475 B
TypeScript
|
|
export type MessageKey =
|
||
|
|
// Labels
|
||
|
|
| "label.context"
|
||
|
|
| "label.usage"
|
||
|
|
| "label.approxRam"
|
||
|
|
| "label.rules"
|
||
|
|
| "label.hooks"
|
||
|
|
// Status
|
||
|
|
| "status.limitReached"
|
||
|
|
| "status.allTodosComplete"
|
||
|
|
// Format
|
||
|
|
| "format.resets"
|
||
|
|
| "format.resetsIn"
|
||
|
|
| "format.in"
|
||
|
|
| "format.cache"
|
||
|
|
| "format.out"
|
||
|
|
| "format.tokPerSec"
|
||
|
|
// Init
|
||
|
|
| "init.initializing"
|
||
|
|
| "init.macosNote";
|
||
|
|
|
||
|
|
export type Messages = Record<MessageKey, string>;
|
||
|
|
|
||
|
|
export type Language = "en" | "zh";
|