mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
export type TerminalTabCloseRequest = {
|
|
requestId: string
|
|
tabId: string
|
|
}
|
|
|
|
export type TerminalTabCloseResponse = {
|
|
requestId: string
|
|
error?: string
|
|
}
|