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:
StevanFreeborn
2023-01-27 15:00:34 -06:00
parent 49ab392964
commit f66edb0e2a
16 changed files with 710 additions and 9 deletions
+14
View File
@@ -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',
}