We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e731508 commit 0bb3c2eCopy full SHA for 0bb3c2e
src/lib/types.ts
@@ -31,9 +31,22 @@ export interface Format {
31
domain?: string
32
original_url?: string
33
page_icon?: string
34
+ drive_properties: GoogleDriveProperties
35
[key: string]: any
36
}
37
38
+export interface GoogleDriveProperties {
39
+ file_id: string
40
+ icon: string
41
+ modified_time: number
42
+ thumbnail: string
43
+ title: string
44
+ trashed: boolean
45
+ url: string
46
+ user_name: string
47
+ version: string
48
+}
49
+
50
export interface Permission {
51
role: Role
52
type: string
0 commit comments