We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0093b24 commit 3b0bb06Copy full SHA for 3b0bb06
packages/util-dynamodb/src/models.ts
@@ -12,7 +12,7 @@ export interface NumberValue {
12
13
export type NativeAttributeValue =
14
| NativeScalarAttributeValue
15
- | Record<string, NativeAttributeValue>
+ | { [key: string]: NativeAttributeValue }
16
| NativeAttributeValue[]
17
| Set<number | bigint | NumberValue | string | NativeAttributeBinary | undefined>
18
| InstanceType<{ new (...args: any[]): any }>; // accepts any class instance with options.convertClassInstanceToMap
0 commit comments