mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:21:48 +08:00
20 lines
617 B
JavaScript
20 lines
617 B
JavaScript
module.exports = {
|
|
CHANNEL_CREATED: 'channelCreated',
|
|
GET_CURRENT_STORY: 'getCurrentStory',
|
|
SET_CURRENT_STORY: 'setCurrentStory',
|
|
GET_STORIES: 'getStories',
|
|
SET_STORIES: 'setStories',
|
|
SELECT_STORY: 'selectStory',
|
|
APPLY_SHORTCUT: 'applyShortcut',
|
|
STORY_ADDED: 'storyAdded',
|
|
STORY_CHANGED: 'storyChanged',
|
|
FORCE_RE_RENDER: 'forceReRender',
|
|
REGISTER_SUBSCRIPTION: 'registerSubscription',
|
|
STORY_INIT: 'storyInit',
|
|
STORY_RENDER: 'storyRender',
|
|
STORY_RENDERED: 'storyRendered',
|
|
STORY_MISSING: 'storyMissing',
|
|
STORY_ERRORED: 'storyErrored',
|
|
STORY_THREW_EXCEPTION: 'storyThrewException',
|
|
};
|