UNPKG

@elsikora/nestjs-crud-automator

Version:

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

8 lines (7 loc) 189 B
import type { ColumnType } from "typeorm"; export interface IApiEntityColumn<E> { isPrimary: boolean; metadata?: Record<string, unknown>; name: keyof E; type: ColumnType; }