/** * Specifies an assignment type * @enum {number} */ const AssignmentType = { Variable: 0, Constant: 1 }; export default AssignmentType;