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,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',
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user