Merge branch 'main' into ts

This commit is contained in:
Spencer Woo
2022-01-26 15:42:41 +08:00
committed by GitHub
12 changed files with 254 additions and 70 deletions
+14
View File
@@ -50,3 +50,17 @@ export declare type OdSearchResult = Array<{
path: string
parentReference: { id: string; name: string; path: string }
}>
// driveItem type which is returned by /api/item?id={id}
export type OdDriveItem = {
'@odata.context': string
'@odata.etag': string
id: string
name: string
parentReference: {
driveId: string
driveType: string
id: string
path: string
}
}