UNPKG

@elsikora/nestjs-crud-automator

Version:

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

9 lines (8 loc) 302 B
import { IApiBaseEntity } from '../../../../api-base-entity.interface'; export interface IApiRouteRuntimeHttpRequest<E extends IApiBaseEntity> { body?: Partial<E>; headers?: Record<string, Array<string> | string | undefined>; ip?: string; params?: Partial<E>; query?: Partial<E>; }