mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:51:25 +08:00
This commit simply transitions the files from js to ts to make the commit history clearer afterwards. Expected not to type-check.
11 lines
406 B
TypeScript
11 lines
406 B
TypeScript
// addons, panels and events get unique names using a prefix
|
|
export const PARAM_KEY = 'knobs';
|
|
export const ADDON_ID = 'storybookjs/knobs';
|
|
export const PANEL_ID = `${ADDON_ID}/panel`;
|
|
|
|
export const RESET = `${ADDON_ID}/reset`;
|
|
export const SET = `${ADDON_ID}/set`;
|
|
export const CHANGE = `${ADDON_ID}/change`;
|
|
export const SET_OPTIONS = `${ADDON_ID}/set-options`;
|
|
export const CLICK = `${ADDON_ID}/click`;
|