···99- [Quick Start](#quick-start)
1010- [Installation](#installation)
1111- [Configuration](#configuration)
1212+ - [Clients](#clients)
1213 - [Formatting](#formatting)
1314 - [Linting](#linting)
1415 - [Enums](#enums)
···9596```
96979798Alternatively, you can use `openapi-ts.config.js` and configure the export statement depending on your project setup.
9999+100100+### Clients
101101+102102+We provide a variety of possible clients to use when generating your `openapi-ts` client. The following are available:
103103+104104+- `angular`: An [Angular](https://angular.io/) client using [RxJS](https://rxjs.dev/).
105105+- `axios`: An [Axios](https://axios-http.com/docs/intro) client.
106106+- `fetch`: A [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) client.
107107+ > NOTE: The Fetch API is experimental in Node.js 18+ and was stabilized in [Node.js v21](https://nodejs.org/docs/latest-v21.x/api/globals.html#fetch)
108108+- `node`: A [Node.js](https://nodejs.org/) client using [node-fetch](https://www.npmjs.com/package/node-fetch).
109109+- `xhr`: A [XMLHttpRequest](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) client.
9811099111### Formatting
100112