feat(tui): add replaceable prompt footer slot

This commit is contained in:
Dax Raad 2026-07-29 10:16:34 -04:00
commit 247f14f955
6 changed files with 152 additions and 106 deletions

View file

@ -116,6 +116,10 @@ export interface Page {
export interface SlotMap {
readonly app: Readonly<Record<string, never>>
readonly "home.footer": Readonly<Record<string, never>>
readonly "prompt.footer.end": {
readonly sessionID?: string
readonly mode: "normal" | "shell"
}
readonly "sidebar.content": {
readonly sessionID: string
}