| 3 | export type PromptMode = "normal" | "shell" |
| 4 | |
| 5 | export interface PromptTraitsInput { |
| 6 | mode: PromptMode |
| 7 | autocompleteVisible: boolean |
| 8 | } |
| 9 | |
| 10 | export type PromptTraits = EditorTraits & { |
| 11 | owner: "opencode" |
nothing calls this directly
no outgoing calls
no test coverage detected