| 9 | export type DocumentEngineClient = Client; |
| 10 | |
| 11 | export interface ClientConfig { |
| 12 | baseURL: string; |
| 13 | authToken: string; |
| 14 | timeout?: number; |
| 15 | maxRetries?: number; |
| 16 | retryDelay?: number; |
| 17 | maxConnections?: number; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Creates and initializes a Document Engine client |
nothing calls this directly
no outgoing calls
no test coverage detected