UNPKG

dynamodb-toolbox

Version:

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

8 lines (7 loc) 361 B
import type { Entity, TransformedItem } from '../../../../entity/index.js'; import type { UpdateItemInputExtension } from '../types.js'; import type { UpdateExpression } from './types.js'; export declare const expressUpdate: (entity: Entity, input: TransformedItem<Entity, { mode: "update"; extension: UpdateItemInputExtension; }>) => UpdateExpression;