- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
import { OpenAPIObject } from './open-api-spec.interface';
|
|
import { SwaggerUiOptions } from './swagger-ui-options.interface';
|
|
export interface SwaggerUIInitOptions {
|
|
swaggerDoc: OpenAPIObject;
|
|
customOptions: SwaggerUiOptions;
|
|
swaggerUrl: string;
|
|
}
|