10 lines
243 B
TypeScript
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;
|
|
}
|