UNPKG

dynatron

Version:

The most advanced ORM for AWS DynamoDB

14 lines (13 loc) 538 B
import { DeleteTableInput } from "@aws-sdk/client-dynamodb"; import { Request } from "../_core/request"; import { DynatronClient } from "../../dynatron"; import { BUILD } from "../../utils/misc-utils"; export declare class TableDelete extends Request { protected readonly client: DynatronClient; protected tableName: string; constructor(client: DynatronClient, tableName: string); [BUILD](): DeleteTableInput; $: () => Promise<{ data: import("@aws-sdk/client-dynamodb").TableDescription | undefined; }>; }