UNPKG

nestjs-paginate

Version:

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

10 lines (9 loc) 291 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; }