feat: added sinon for stubbing in tests. fix: added jsdoc comments to enums. feat: begin working on implementing OnspringClient methods
This commit is contained in:
@@ -1,5 +1,19 @@
|
||||
export enum FileStorageSite {
|
||||
/**
|
||||
* @constant Internal - The file is stored in the internal file storage.
|
||||
* @type {string}
|
||||
*/
|
||||
Internal = 'Internal',
|
||||
|
||||
/**
|
||||
* @constant OneDrive - The file is stored in OneDrive.
|
||||
* @type {string}
|
||||
*/
|
||||
OneDrive = 'OneDrive',
|
||||
|
||||
/**
|
||||
* @constant GoogleDrive - The file is stored in Google Drive.
|
||||
* @type {string}
|
||||
*/
|
||||
GoogleDrive = 'GoogleDrive',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user