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