UNPKG

@webiny/api-security-so-ddb

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