| 10 | import * as API from './resources'; |
| 11 | |
| 12 | export interface VYroAIOptions { |
| 13 | baseURL?: string; |
| 14 | apiKey?: string; |
| 15 | timeout?: number | undefined; |
| 16 | httpAgent?: Agent; |
| 17 | apiType?: (string & NonNullable<unknown>) | 'api'; |
| 18 | fetch?: Fetch | undefined; |
| 19 | defaultHeaders?: Headers; |
| 20 | defaultQuery?: DefaultQuery; |
| 21 | } |
| 22 | |
| 23 | export class VYroAI extends APIClient { |
| 24 | public apiType: (string & NonNullable<unknown>) | 'api'; |
nothing calls this directly
no outgoing calls
no test coverage detected