Skip to content

Commit

Permalink
fix(util-dynamodb): remove circular ref error
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jun 13, 2022
1 parent ca81a02 commit f003468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/util-dynamodb/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface NumberValue {

export type NativeAttributeValue =
| NativeScalarAttributeValue
| Record<string, NativeAttributeValue>
| { [key: string]: NativeAttributeValue }
| NativeAttributeValue[]
| Set<number | bigint | NumberValue | string | NativeAttributeBinary | undefined>
| InstanceType<{ new (...args: any[]): any }>; // accepts any class instance with options.convertClassInstanceToMap
Expand Down

0 comments on commit f003468

Please sign in to comment.