UNPKG

@webiny/api-headless-cms-ddb

Version:

DynamoDB storage operations plugin for Headless CMS API.

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