UNPKG

nestjs-paginate

Version:

Pagination and filtering helper method for TypeORM repositories or query builders using Nest.js framework.

14 lines (13 loc) 394 B
import { CatHomePillowEntity } from './cat-home-pillow.entity'; import { CatEntity } from './cat.entity'; export declare class CatHomeEntity { id: number; name: string; street: string | null; cat: CatEntity; pillows: CatHomePillowEntity[]; naptimePillow: CatHomePillowEntity | null; createdAt: string; config: Record<string, any> | null; countCat: number; }