Emilio Martinez dfbf5d9cb5 Addon-knobs: straight rename js => ts
This commit simply transitions the files from js to ts to make the commit history clearer afterwards. Expected not to type-check.
2019-07-07 18:19:04 -07:00

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`;