UNPKG

399 BTypeScriptView Raw
1import type { AnyFramework, ArgsEnhancer } from '@storybook/csf';
2/**
3 * Automatically add action args for argTypes whose name
4 * matches a regex, such as `^on.*` for react-style `onClick` etc.
5 */
6export declare const inferActionsFromArgTypesRegex: ArgsEnhancer<AnyFramework>;
7/**
8 * Add action args for list of strings.
9 */
10export declare const addActionsFromArgTypes: ArgsEnhancer<AnyFramework>;