UNPKG

@webiny/api-page-builder-so-ddb

Version:

The DynamoDB storage operations Webiny Page Builder API.

10 lines (9 loc) 364 B
import { Table } from "@webiny/db-dynamodb/toolbox"; import { TableModifier } from "../types"; import { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb"; interface Params { table?: TableModifier; documentClient: DynamoDBDocument; } export declare const createTable: ({ table, documentClient }: Params) => Table<string, string, string>; export {};