还原原来的单行文本输入框

This commit is contained in:
2024-08-13 13:29:33 +08:00
parent 9b3dfbbee4
commit acf649beb2
3 changed files with 22 additions and 6 deletions
@@ -10,7 +10,7 @@ export interface ChatHandler {
data?: any;
},
) => void;
handleInputChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void;
handleInputChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
reload?: () => void;
stop?: () => void;
onFileUpload?: (file: File) => Promise<void>;