mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
10 lines
261 B
TypeScript
10 lines
261 B
TypeScript
export const ADDON_ID = 'storybook/measure-addon';
|
|
export const TOOL_ID = `${ADDON_ID}/tool`;
|
|
export const PARAM_KEY = 'measureEnabled';
|
|
|
|
export const EVENTS = {
|
|
RESULT: `${ADDON_ID}/result`,
|
|
REQUEST: `${ADDON_ID}/request`,
|
|
CLEAR: `${ADDON_ID}/clear`,
|
|
};
|