dynamodb-toolbox
Version:
Lightweight and type-safe query builder for DynamoDB and TypeScript.
5 lines (4 loc) • 307 B
TypeScript
import type { Entity } from '../../entity/index.js';
import type { TransformedValue } from '../../schema/index.js';
import type { WriteItemOptions } from './options.js';
export type TransformedItem<ENTITY extends Entity, OPTIONS extends WriteItemOptions = {}> = TransformedValue<ENTITY['schema'], OPTIONS>;