UNPKG

duenamodb

Version:

Simple, strongly-typed helpers around the AWS SDK DynamoDB client.

5 lines (4 loc) 214 B
import type { NativeAttributeValue } from "@aws-sdk/util-dynamodb"; export type PK = string | number; export type SK = string | number | undefined; export type DynamoDBTypes = Record<string, NativeAttributeValue>;