update comment style

This commit is contained in:
spencerwooo 2022-01-26 15:44:31 +08:00
parent 03353ed6dc
commit 3f6c0fad4f
No known key found for this signature in database
GPG key ID: 24CD550268849CA0

10
types/index.d.ts vendored
View file

@ -50,17 +50,11 @@ export declare type OdSearchResult = Array<{
path: string
parentReference: { id: string; name: string; path: string }
}>
// driveItem type which is returned by /api/item?id={id}
// API response object for /api/item?id={id}. This is primarily used for determining the path of the driveItem by ID.
export type OdDriveItem = {
'@odata.context': string
'@odata.etag': string
id: string
name: string
parentReference: {
driveId: string
driveType: string
id: string
path: string
}
parentReference: { driveId: string; driveType: string; id: string; path: string }
}