We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af76579 commit 4334eadCopy full SHA for 4334ead
smithy-typescript-ssdk-libs/server-common/src/unique.ts
@@ -20,7 +20,7 @@ import * as util from "util";
20
* A shortcut for JSON and Smithy primitives, as well as documents and Smithy-
21
* modeled structures composed of those primitives
22
*/
23
-export type Input = Record<string, Input> | Array<Input> | Date | Uint8Array | string | number | boolean | null;
+export type Input = { [key: string]: Input } | Array<Input> | Date | Uint8Array | string | number | boolean | null;
24
25
/**
26
* Returns an array of duplicated values in the input. This is equivalent to using
0 commit comments