You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* @private
|
|
*/
|
|
var PrimitiveState = {
|
|
READY: 0,
|
|
CREATING: 1,
|
|
CREATED: 2,
|
|
COMBINING: 3,
|
|
COMBINED: 4,
|
|
COMPLETE: 5,
|
|
FAILED: 6,
|
|
};
|
|
export default Object.freeze(PrimitiveState);
|