Refactor ClineSay

This commit is contained in:
Saoud Rizwan
2024-10-06 04:29:48 -04:00
parent d5a998a23a
commit 0932361c7d
4 changed files with 27 additions and 27 deletions

View File

@@ -41,7 +41,7 @@ export interface ClineMessage {
ts: number
type: "ask" | "say"
ask?: ClineAsk
say?: ClaudeSay
say?: ClineSay
text?: string
images?: string[]
partial?: boolean
@@ -58,7 +58,7 @@ export type ClineAsk =
| "resume_completed_task"
| "mistake_limit_reached"
export type ClaudeSay =
export type ClineSay =
| "task"
| "error"
| "api_req_started"
@@ -73,7 +73,7 @@ export type ClaudeSay =
| "shell_integration_warning"
| "inspect_site_result"
export interface ClaudeSayTool {
export interface ClineSayTool {
tool:
| "editedExistingFile"
| "newFileCreated"