We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2227646 commit 574507fCopy full SHA for 574507f
packages/util-dynamodb/src/models.ts
@@ -27,6 +27,15 @@ export type NativeScalarAttributeValue =
27
| NativeAttributeBinary
28
| string;
29
30
+/**
31
+ * Declare File in case DOM is not added to the tsconfig lib causing
32
+ * File interface is not defined. For developers with DOM lib added,
33
+ * the File interface will be merged correctly.
34
+ */
35
+declare global {
36
+ interface File {}
37
+}
38
+
39
export type NativeAttributeBinary =
40
| ArrayBuffer
41
| Blob
0 commit comments