Files
openapi-clean-arch-gen/src/types/swagger.types.ts

10 lines
243 B
TypeScript

/**
* Result of parsing an OpenAPI/Swagger file.
* Contains the raw structures extracted from the spec for further processing.
*/
export interface SwaggerAnalysis {
tags: unknown[];
paths: Record<string, unknown>;
swagger: unknown;
}