UNPKG

nestjs-paginate

Version:

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

11 lines (10 loc) 314 B
import { CatHomePillowBrandEntity } from './cat-home-pillow-brand.entity'; import { CatHomeEntity } from './cat-home.entity'; export declare class CatHomePillowEntity { id: number; home: CatHomeEntity; color: string; brand: CatHomePillowBrandEntity; createdAt: string; deletedAt: string; }