UNPKG

mongodb-dynamic-api

Version:

Auto generated CRUD API for MongoDB using NestJS

6 lines (5 loc) 193 B
import { BaseEntity } from '../../models'; interface CreateOneService<Entity extends BaseEntity> { createOne(partial: Partial<Entity>): Promise<Entity>; } export type { CreateOneService };