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
+18 -1
View File
@@ -1,5 +1,22 @@
/**
* @enum FieldStatus - The status of a field.
*/
export enum FieldStatus {
/**
* @constant Enabled - The field is enabled.
* @type {string}
*/
Enabled = 'Enabled',
/**
* @constant Disabled - The field is disabled.
* @type {string}
*/
Disabled = 'Disabled',
/**
* @constant Invalid - The field is invalid.
* @type {string}
*/
Invalid = 'Invalid',
}
}