UNPKG

@blueleader07/typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

9 lines (8 loc) 271 B
import { DynamoPageable } from "./DynamoPageable"; export declare class DynamoPage<T> { content: T[]; size: number; lastEvaluatedKey?: string; numberOfElements: number; constructor(content: T[], pageable: DynamoPageable, lastEvaluatedKey?: string); }