UNPKG

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

Version:

The DynamoDB storage operations Webiny Page Builder API.

10 lines (9 loc) 305 B
import { Entity, Table } from "@webiny/db-dynamodb/toolbox"; import { Attributes } from "../types"; interface Params { table: Table<string, string, string>; entityName: string; attributes: Attributes; } export declare const createPageElementEntity: (params: Params) => Entity<any>; export {};