UNPKG

nestjs-auto-reflect-metadata-emitter

Version:

[![Actions Status](https://github.com/Codibre/nestjs-auto-reflect-metadata-emitter/workflows/build/badge.svg)](https://github.com/Codibre/nestjs-auto-reflect-metadata-emitter/actions) [![Actions Status](https://github.com/Codibre/nestjs-auto-reflect-metad

6 lines (5 loc) 698 B
import { ClassMetadata, ClassType, Key } from './meta-type'; export declare const DEFAULT: unique symbol; export declare function applyPropertyAndMethodsDecorators<T extends object = object>(clsOrMeta: ClassMetadata<T>, propertyAndMethodsDecorators: Partial<Record<Key<T> | typeof DEFAULT, (MethodDecorator | PropertyDecorator)[]>>): void; export declare function applyPropertyAndMethodsDecorators<T extends object = object>(clsOrMeta: ClassType<T>, propertyAndMethodsDecorators: Partial<Record<Key<T> | typeof DEFAULT, (MethodDecorator | PropertyDecorator)[]>>): void; export declare function applyClassDecorators<T extends object = object>(cls: ClassType<T>, decorators: ClassDecorator[]): void;