dynatron
Version:
The most advanced ORM for AWS DynamoDB
16 lines (15 loc) • 544 B
TypeScript
import { ListTablesInput } from "@aws-sdk/client-dynamodb";
import { Request } from "../_core/request";
import { DynatronClient } from "../../dynatron";
import { BUILD } from "../../utils/misc-utils";
export declare class TableList extends Request {
#private;
protected readonly client: DynatronClient;
constructor(client: DynatronClient);
limit: (limit: number) => this;
start: (exclusiveStartTableName?: string) => this;
[BUILD](): ListTablesInput;
$: () => Promise<{
data: string[] | undefined;
}>;
}