mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
7 lines
No EOL
281 B
TypeScript
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" |