- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
10 lines
357 B
TypeScript
10 lines
357 B
TypeScript
import { Type } from '@nestjs/common';
|
|
import { SchemaObject } from './open-api-spec.interface';
|
|
export interface SchemaObjectMetadata extends Omit<SchemaObject, 'type' | 'required'> {
|
|
type?: Type<unknown> | Function | [Function] | string | Record<string, any>;
|
|
isArray?: boolean;
|
|
required?: boolean;
|
|
name?: string;
|
|
enumName?: string;
|
|
}
|