23 lines
479 B
TypeScript
23 lines
479 B
TypeScript
/**
|
|
* @enum FileStorageSite - The site where the file is stored.
|
|
*/
|
|
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',
|
|
}
|