Roo-Code/src/shared/WebviewMessage.ts

7 lines
No EOL
281 B
TypeScript

export interface WebviewMessage {
type: "apiKey" | "maxRequestsPerTask" | "webviewDidLaunch" | "newTask" | "askResponse" | "clearTask"
text?: string
askResponse?: ClaudeAskResponse
}
export type ClaudeAskResponse = "yesButtonTapped" | "noButtonTapped" | "textResponse"