UNPKG

dynatron

Version:

The most advanced ORM for AWS DynamoDB

9 lines (8 loc) 327 B
import { DeleteItemOutput } from "@aws-sdk/client-dynamodb"; import { Check } from "../_core/items-check"; import { NativeValue } from "../../dynatron"; export declare class Delete extends Check { $: <T = NativeValue | undefined>() => Promise<{ data: T | undefined; } & Omit<DeleteItemOutput, "Attributes">>; }