Skip to content

Commit

Permalink
add docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisaCG committed Nov 18, 2024
1 parent c6d34bf commit 72f2ebb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,24 @@ export const IDrivesList = new Token<IDriveInfo[]>(
* An interface that stores the drive information.
*/
export interface IDriveInfo {
/**
* Name of drive as stored on the provider account.
*/
name: string;
/**
* Region of drive (e.g.: eu-north-1).
*/
region: string;
/**
* Provider of drive (e.g.: s3, gcs).
*/
provider: string;
/**
* Date drive was created.
*/
creationDate: string;
/**
* Whether a content manager for the drive was already set up in the backend (true) or not (false).
*/
mounted: boolean;
}

0 comments on commit 72f2ebb

Please sign in to comment.