UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

10 lines (9 loc) 371 B
import { AttributeValue } from '@aws-sdk/client-dynamodb'; import { AttributeMap, DynamoDBItem } from '../'; export declare class AttributeMapNormalizer { normalizeMaps(input: AttributeMap[]): DynamoDBItem[]; normalizeMap(input: AttributeMap): DynamoDBItem; normalizeAttributeValue(input: AttributeValue): any; private typeOfString; private typeOf; }