| 1 | import { useState } from "react"; |
| 2 | |
| 3 | interface RequestBody { |
| 4 | inputText: string; |
| 5 | tableSchema?: string; |
| 6 | } |
| 7 | |
| 8 | export function useTranslate() { |
| 9 | const [translating, setTranslating] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected