Skip to content

Commit 0bb3c2e

Browse files
committed
add drive properties type
1 parent e731508 commit 0bb3c2e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/lib/types.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,22 @@ export interface Format {
3131
domain?: string
3232
original_url?: string
3333
page_icon?: string
34+
drive_properties: GoogleDriveProperties
3435
[key: string]: any
3536
}
3637

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+
3750
export interface Permission {
3851
role: Role
3952
type: string

0 commit comments

Comments
 (0)