@openapi-generator-plus/typescript-fetch-client-generator
Version:
An OpenAPI Generator Plus template for a TypeScript API client using Fetch
13 lines (12 loc) • 518 B
TypeScript
import { CodegenOptionsTypeScript } from '@openapi-generator-plus/typescript-generator-common';
/**
* Options specific to the template that the user can provide to the code generation process.
*/
export interface CodegenOptionsTypeScriptFetchClient extends CodegenOptionsTypeScript {
legacyUnnamespacedModelSupport: boolean;
withInterfaces: boolean;
/**
* Whether polyfills should be included for features that browsers might not have, or might not do well.
*/
includePolyfills: boolean;
}