Skip to content

Commit 72f2ebb

Browse files
committed
add docstrings
1 parent c6d34bf commit 72f2ebb

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/token.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,24 @@ export const IDrivesList = new Token<IDriveInfo[]>(
1111
* An interface that stores the drive information.
1212
*/
1313
export interface IDriveInfo {
14+
/**
15+
* Name of drive as stored on the provider account.
16+
*/
1417
name: string;
18+
/**
19+
* Region of drive (e.g.: eu-north-1).
20+
*/
1521
region: string;
22+
/**
23+
* Provider of drive (e.g.: s3, gcs).
24+
*/
1625
provider: string;
26+
/**
27+
* Date drive was created.
28+
*/
1729
creationDate: string;
30+
/**
31+
* Whether a content manager for the drive was already set up in the backend (true) or not (false).
32+
*/
1833
mounted: boolean;
1934
}

0 commit comments

Comments
 (0)