@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
26 lines • 800 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ProgressActionState = void 0;
/**
* Possible action's states
*/
var ProgressActionState;
(function (ProgressActionState) {
/**
* Not started yet
*/
ProgressActionState[ProgressActionState["notStarted"] = 0] = "notStarted";
/**
* Currently in progress
*/
ProgressActionState[ProgressActionState["inProgress"] = 1] = "inProgress";
/**
* Finished with no errors
*/
ProgressActionState[ProgressActionState["finished"] = 2] = "finished";
/**
* Errored
*/
ProgressActionState[ProgressActionState["errored"] = 3] = "errored";
})(ProgressActionState || (exports.ProgressActionState = ProgressActionState = {}));
//# sourceMappingURL=IProgress.js.map