storybook
Version:
Storybook: Develop, document, and test UI components in isolation
19 lines (16 loc) • 591 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", CallStates2))(CallStates || {});
export {
EVENTS,
CallStates
};