Files
orca/src/shared/terminal-tab-close.ts
T
2026-07-15 22:09:37 -07:00

10 lines
159 B
TypeScript

export type TerminalTabCloseRequest = {
requestId: string
tabId: string
}
export type TerminalTabCloseResponse = {
requestId: string
error?: string
}