UNPKG

@elsikora/nestjs-crud-automator

Version:

A library for automating the creation of CRUD operations in NestJS.

9 lines (8 loc) 768 B
import type { EApiRouteType } from '../../../../../enum/decorator/api/index'; import type { IDtoGenerateFactory } from '../../../../../interface/dto-generate-factory.interface'; import type { IApiEntity } from '../../../../../interface/entity/index'; import type { TApiPropertyDescribeDtoProperties, TApiPropertyDescribeNumberProperties } from '../../../../../type/decorator/api/property/index'; import { EApiDtoType } from '../../../../../enum/decorator/api/index'; export declare class DtoPropertyFactoryNumber<E> implements IDtoGenerateFactory<E> { create(metadata: TApiPropertyDescribeNumberProperties, entity: IApiEntity<E>, config: TApiPropertyDescribeDtoProperties, _method: EApiRouteType, dtoType: EApiDtoType, _propertyName: string): PropertyDecorator; }