import { OpenAPIObject } from 'openapi3-ts/oas31'; import { IGeneratorOptions } from './models/generator-options.ts'; import { SchemaWrapperInfo } from './models/schema-info.ts'; import { IImportType, IPath, ITemplateData } from './models/template-data.ts'; import { IEntity } from './models/entity.ts'; import { IReferenceProperty } from './models/reference-property.ts'; import { IValueProperty } from './models/value-property.ts'; export declare class OpenApiDocConverter { private readonly options; private readonly apiDocument; readonly endAlphaNumRegex: RegExp; readonly startNumberregex: RegExp; constructor(options: IGeneratorOptions, apiDocument: OpenAPIObject); convertDocument(): ITemplateData; convertPaths(): IPath[]; convertEntities(): IEntity[]; buildSchemaWrapperInfoForEnum(schemaWrapperInfo: SchemaWrapperInfo): void; buildSchemaWrapperInfo(parentTypeName: string, schemaWrapperInfo: SchemaWrapperInfo): void; convertArray(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): void; convertSchemaObjectToPropertyType(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): IValueProperty; private convertValidator; convertArrayObjectToValuePropertyType(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): IValueProperty; getInitialValue(propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): string; getInitialTestValue(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): string; convertArrayObjectToReferencePropertyType(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): IReferenceProperty; convertReferenceObjectToPropertyType(parentTypeName: string, propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): IReferenceProperty; getValidatorCount(propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): number; getPropertyTypeScriptType(schemaWrapperInfo: SchemaWrapperInfo): string; parseRef(schemaWrapperInfo: SchemaWrapperInfo): string; getImportTypes(entityName: string, schemaWrapperInfo: SchemaWrapperInfo): IImportType[]; getIsRequired(propertyName: string, schemaWrapperInfo: SchemaWrapperInfo): boolean; } //# sourceMappingURL=openapidoc-converter.d.ts.map