Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { OpenAPIV3 } from "openapi-types";
export interface OptimizerOptions {
removeUnusedComponents: boolean;
removeUnusedTags: boolean;
removeUserDefinedRootProperty: boolean;
removeUnusedSecuritySchemas: boolean;
}
export declare class SpecOptimizer {
private static defaultOptions;
static optimize(spec: OpenAPIV3.Document, options?: OptimizerOptions): OpenAPIV3.Document;
private static removeUnusedSecuritySchemas;
private static removeUnusedTags;
private static removeUserDefinedRootProperty;
private static removeUnusedComponents;
private static getComponentReferences;
private static getComponent;
private static addComponent;
}