@elsikora/nestjs-crud-automator
Version:
A library for automating the creation of CRUD operations in NestJS.
12 lines (11 loc) • 366 B
TypeScript
import { EApiExceptionDetailsType } from '../../../../../enum/utility/exception-details-type.enum';
export declare class ExceptionDetailsForeignKeyViolationDTO {
constraint?: string;
detail?: string;
field?: string;
referencedField?: string;
referencedTable?: string;
table?: string;
type: EApiExceptionDetailsType;
value?: string;
}