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
+12
View File
@@ -1,4 +1,16 @@
/**
* @enum Multiplicity - The multiplicity type of the object.
*/
export enum Multiplicity {
/**
* @constant SingleSelect - Single select multiplicity.
* @type {string}
*/
SingleSelect = 'SingleSelect',
/**
* @constant MultiSelect - Multi select multiplicity.
* @type {string}
*/
MultiSelect = 'MultiSelect',
}