hellohello234
Version:
Simple calculator API hosted on APIMATIC
34 lines (25 loc) • 506 B
JavaScript
/**
* hellohello234
*
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io )
*/
;
const OperationTypeEnum = {
/**
* Represents the sum operator
*/
SUM: 'SUM',
/**
* Represents the subtract operator
*/
SUBTRACT: 'SUBTRACT',
/**
* Represents the multiply operator
*/
MULTIPLY: 'MULTIPLY',
/**
* Represents the divide operator
*/
DIVIDE: 'DIVIDE',
};
module.exports = OperationTypeEnum;