@blueleader07/typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
10 lines (9 loc) • 417 B
TypeScript
import { Stream } from "stream";
import { DynamoScanOptions } from "./models/DynamoScanOptions";
import { DynamoRepository } from "../../repository/DynamoRepository";
export declare class DynamoReadStream<Entity> extends Stream.Readable {
repository: DynamoRepository<Entity>;
options: DynamoScanOptions;
constructor(repository: DynamoRepository<Entity>, options: DynamoScanOptions);
_read(): void;
}