storybook
Version:
Storybook: Develop, document, and test UI components in isolation
25 lines (22 loc) • 623 B
JavaScript
// src/instrumenter/EVENTS.ts
var EVENTS = {
CALL: "storybook/instrumenter/call",
SYNC: "storybook/instrumenter/sync",
START: "storybook/instrumenter/start",
BACK: "storybook/instrumenter/back",
GOTO: "storybook/instrumenter/goto",
NEXT: "storybook/instrumenter/next",
END: "storybook/instrumenter/end"
};
// src/instrumenter/types.ts
var CallStates = /* @__PURE__ */ ((CallStates2) => {
CallStates2["DONE"] = "done";
CallStates2["ERROR"] = "error";
CallStates2["ACTIVE"] = "active";
CallStates2["WAITING"] = "waiting";
return CallStates2;
})(CallStates || {});
export {
EVENTS,
CallStates
};