UNPKG

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

Version:

The DynamoDB + Elasticsearch storage operations Webiny Page Builder API.

10 lines (9 loc) 311 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 createPageElasticsearchEntity: (params: Params) => Entity<any>; export {};