import { Type } from '@nestjs/common'; import { SchemaObject } from './open-api-spec.interface'; export interface SchemaObjectMetadata extends Omit { type?: Type | Function | [Function] | string | Record; isArray?: boolean; required?: boolean; name?: string; enumName?: string; }