You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package/src/types/types.ts
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ export type Asset = {
21
21
uri: string;
22
22
width: number;
23
23
id?: string;
24
+
originalUri?: string;
24
25
size?: number;
25
26
};
26
27
@@ -29,6 +30,7 @@ export type File = {
29
30
duration?: number;
30
31
id?: string;
31
32
mimeType?: string;
33
+
originalUri?: string;
32
34
size?: number;
33
35
type?: FileTypes;
34
36
// The uri should be of type `string`. But is `string|undefined` because the same type is used for the response from Stream's Attachment. This shall be fixed.
0 commit comments