import { Type } from '@nestjs/common'; import 'reflect-metadata'; import { ArgsType, InputType, InterfaceType, ObjectType } from '../../decorators'; import { PropertyMetadata } from '../metadata'; export declare function getFieldsAndDecoratorForType(objType: Type): { fields: PropertyMetadata[]; decoratorFactory: ClassDecorator; }; declare type ClassDecorator = typeof ArgsType | typeof InterfaceType | typeof ObjectType | typeof InputType; export {}; //# sourceMappingURL=get-fields-and-decorator.util.d.ts.map