UNPKG

@webiny/api-apw-scheduler-so-ddb

Version:

The DynamoDB storage operations for scheduler action feature in the Webiny APW API.

8 lines (7 loc) 307 B
import { Table } from "@webiny/db-dynamodb/toolbox"; import { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb"; export interface Params { table?: string; documentClient: DynamoDBDocument; } export declare const createTable: ({ table, documentClient }: Params) => Table<string, "PK", "SK">;