UNPKG

dynamodb-toolbox

Version:

Lightweight and type-safe query builder for DynamoDB and TypeScript.

9 lines (8 loc) 239 B
import type { Entity, InputItem } from '../../../entity/index.js'; /** * User input of a PUT command for a given Entity * * @param ENTITY Entity * @return Object */ export type PutItemInput<ENTITY extends Entity> = InputItem<ENTITY>;