nestjs-paginate
Version:
Pagination and filtering helper method for TypeORM repositories or query builders using Nest.js framework.
13 lines (12 loc) • 354 B
TypeScript
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;
countCat: number;
}