UNPKG

@elsikora/nestjs-crud-automator

Version:

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

12 lines (11 loc) 303 B
import { IApiBaseEntity } from '../api-base-entity.interface'; import { ColumnType } from 'typeorm'; export interface IApiEntityColumn<E> { isPrimary: boolean; metadata?: Record<string, unknown>; name: keyof E; relation?: { target: IApiBaseEntity; }; type: ColumnType; }