UNPKG

dynamoose

Version:

Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)

14 lines (13 loc) 451 B
import * as DynamoDBUtil from "@aws-sdk/util-dynamodb"; type ConverterType = { marshall: typeof DynamoDBUtil.marshall; unmarshall: typeof DynamoDBUtil.unmarshall; convertToAttr: typeof DynamoDBUtil.convertToAttr; convertToNative: typeof DynamoDBUtil.convertToNative; }; declare function main(): ConverterType; declare namespace main { var set: (converter: ConverterType) => void; var revert: () => void; } export default main;