/** * Specifies the type of a constraint * * @enum {number} */ const ConstraintType = { ContextParentConstraint: 1 << 0, RequestedTypeResolutionConstraint: 1 << 1 }; export default ConstraintType;