| 120 | export type InferRouterInputs<T extends Router<any>> = OperationIO<T, "input"> |
| 121 | |
| 122 | export interface ClientConfig extends ClientRequestOptions { |
| 123 | baseUrl: string |
| 124 | credentials?: RequestCredentials |
| 125 | } |
| 126 | |
| 127 | export const createClient = <T extends Router<any>>( |
| 128 | options?: ClientConfig, |
nothing calls this directly
no outgoing calls
no test coverage detected