| 119 | * 翻译参数接口 |
| 120 | */ |
| 121 | export interface TranslateOptions { |
| 122 | /** 最大重试次数 */ |
| 123 | maxRetries?: number; |
| 124 | /** 重试间隔(毫秒) */ |
| 125 | retryDelay?: number; |
| 126 | /** 超时时间(毫秒) */ |
| 127 | timeout?: number; |
| 128 | /** 是否使用缓存 */ |
| 129 | useCache?: boolean; |
| 130 | } |
nothing calls this directly
no outgoing calls
no test coverage detected