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 c6d34bf commit 72f2ebbCopy full SHA for 72f2ebb
src/token.ts
@@ -11,9 +11,24 @@ export const IDrivesList = new Token<IDriveInfo[]>(
11
* An interface that stores the drive information.
12
*/
13
export interface IDriveInfo {
14
+ /**
15
+ * Name of drive as stored on the provider account.
16
+ */
17
name: string;
18
19
+ * Region of drive (e.g.: eu-north-1).
20
21
region: string;
22
23
+ * Provider of drive (e.g.: s3, gcs).
24
25
provider: string;
26
27
+ * Date drive was created.
28
29
creationDate: string;
30
31
+ * Whether a content manager for the drive was already set up in the backend (true) or not (false).
32
33
mounted: boolean;
34
}
0 commit comments