@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
8 lines (7 loc) • 472 B
TypeScript
import type { IDtoStrategy } from '../../../interface/class/index';
import type { IDtoGenerateFactory } from '../../../interface/dto-generate-factory.interface';
import { EApiDtoType, EApiPropertyDescribeType } from '../../../enum/decorator/api/index';
export declare const DTO_UTILITY_CONSTANT: {
readonly DTO_STRATEGIES: Record<EApiDtoType, IDtoStrategy>;
readonly PROPERTY_DECORATOR_FACTORIES: Record<EApiPropertyDescribeType, IDtoGenerateFactory<unknown>>;
};