Closed sam-goodwin closed 2 years ago
Probide type-safe definitions for @aws-sdk/util-dynamodb's marshall and unmarshall functions:
@aws-sdk/util-dynamodb
marshall
unmarshall
import { marshallOptions, unmarshallOptions, marshall as _marshall, unmarshall as _unmarshall, } from "@aws-sdk/util-dynamodb"; import { ToAttributeMap } from "./attribute-value"; export const marshall: < Item extends object, MarshallOptions extends marshallOptions >( item: Item, options?: MarshallOptions | undefined ) => ToAttributeMap<Item> = _marshall; export const unmarshall: < Item extends object, UnmarshallOptions extends unmarshallOptions >( item: ToAttributeMap<Item>, options?: UnmarshallOptions | undefined ) => Item = _unmarshall as any;
Probide type-safe definitions for
@aws-sdk/util-dynamodb
'smarshall
andunmarshall
functions: