UNPKG

apisculptify

Version:

Apisculptify is a powerful Node.js tool designed to automate the process of generating RESTful APIs for your TypeORM models. With Apisculptify, you can quickly create a new project, define your TypeORM models, and effortlessly generate CRUD (Create, Read,

15 lines 341 B
export class SearchResult<Entity> { total: number; start: number; limit: number; records: Entity[] constructor(total: number, start: number, limit: number, records: any[]) { this.total = total; this.start = start; this.limit = limit; this.records = records; } }