/** Configuration of an Open API generator */ export interface OpenApiToolsGenerator { /** Location of the OpenAPI spec, as URL or file */ inputSpec: string; /** Output path for the generated SDK */ output: string; /** Generator to use */ generatorName: string; /** Path to configuration file. It can be JSON or YAML */ config?: string; /** Sets specified global properties */ globalProperty?: string | Record; } /** Global configuration of Open API generators */ export interface OpenApiToolsGeneratorCli { /** Open API version */ version: string; /** Location of the generator JAR file */ storageDir?: string; /** Generators configuration */ generators: Record; } /** Global configuration of Open API Tools */ export interface OpenApiToolsConfiguration { /** Generators CLI configuration */ 'generator-cli': OpenApiToolsGeneratorCli; } //# sourceMappingURL=open-api-tools-configuration.d.ts.map