fork of hey-api/openapi-ts because I need some additional things
1export { createClient } from './client';
2export type { Auth } from './core/auth';
3export type { QuerySerializerOptions } from './core/bodySerializer';
4export {
5 formDataBodySerializer,
6 jsonBodySerializer,
7 urlSearchParamsBodySerializer,
8} from './core/bodySerializer';
9export { buildClientParams } from './core/params';
10export type {
11 Client,
12 ClientOptions,
13 Config,
14 CreateClientConfig,
15 Options,
16 RequestOptions,
17 RequestResult,
18 TDataShape,
19} from './types';
20export { createConfig } from './utils';