UNPKG

@cpmech/az-dynamo

Version:

Auxiliary Tools for DynamoDB

10 lines (9 loc) 308 B
import { Iany } from '@cpmech/js2ts'; import { IPrimaryKey } from '../types'; export interface IUpdateTItem { table: string; primaryKey: IPrimaryKey; data: Iany; put?: boolean; } export declare const updateT: (items: IUpdateTItem[], returnItems?: boolean) => Promise<null | Iany[]>;