UNPKG

@webiny/api-headless-cms-ddb-es

Version:

DynamoDB and Elasticsearch storage operations plugin for Headless CMS API.

8 lines (7 loc) 291 B
import { type ITable } from "@webiny/db-dynamodb"; import type { IEntryEntity } from "../definitions/types.js"; export interface CreateEntryEntityParams { table: ITable; entityName: string; } export declare const createEntryEntity: (params: CreateEntryEntityParams) => IEntryEntity;