| 11 | import { SlidersHorizontal } from "lucide-react"; |
| 12 | |
| 13 | interface GourceInputProps { |
| 14 | onSubmit: ( |
| 15 | url: string, |
| 16 | accessKey?: string, |
| 17 | settings?: GourceSettings |
| 18 | ) => Promise<void>; |
| 19 | onCancel: () => Promise<void>; |
| 20 | isLoading: boolean; |
| 21 | isGenerating: boolean; |
| 22 | initialUrl?: string; |
| 23 | initialSettings?: GourceSettings; |
| 24 | } |
| 25 | |
| 26 | export interface GourceSettings { |
| 27 | show_file_extension_key: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected