UNPKG

@nestjs-mod/common

Version:

A collection of utilities for unifying NestJS applications and modules

4 lines (3 loc) 455 B
import { ConfigModelPropertyOptions, ConfigModelRootOptions } from './types'; export declare function ConfigModel(options?: ConfigModelRootOptions): <TFunction extends Function, Y>(target: TFunction | object, propertyKey?: string | symbol, descriptor?: TypedPropertyDescriptor<Y>) => void; export declare function ConfigModelProperty(options?: Omit<ConfigModelPropertyOptions, 'propertyKey' | 'originalName'>): (target: any, propertyKey: string) => void;