feat(front): add text-translate feature with corresponding UI components and action handlers

This commit is contained in:
keven1024
2026-04-06 22:36:20 +08:00
parent 2af28b6a50
commit 0d4d89d4ec
4 changed files with 20 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
export type FileHandleKey = 'file-share' | 'file-image-compress' | 'file-image-convert'
export type FileShareHandleProps = { type: FileHandleKey; config: Record<string, any> }
export type TextHandleKey = 'text-share'
export type TextHandleKey = 'text-share' | 'text-translate'
export type TextShareHandleProps = { type: TextHandleKey; config: Record<string, any> }