@openapi-generator-plus/typescript-fetch-client-generator2
Version:
An OpenAPI Generator Plus template for a TypeScript API client using Fetch
11 lines (10 loc) • 444 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 {
/**
* Whether polyfills should be included for features that browsers might not have, or might not do well.
*/
includePolyfills: boolean;
}