Files
Shifted/node_modules/@storybook/addon-interactions/dist/preview.d.ts
2026-02-10 01:14:19 +00:00

21 lines
595 B
TypeScript

import { StepRunner } from 'storybook/internal/types';
interface InteractionsParameters {
/**
* Interactions configuration
*
* @see https://storybook.js.org/docs/essentials/interactions
*/
test: {
/** Ignore unhandled errors during test execution */
dangerouslyIgnoreUnhandledErrors?: boolean;
/** Whether to throw exceptions coming from the play function */
throwPlayFunctionExceptions?: boolean;
};
}
declare const runStep: StepRunner;
declare const parameters: InteractionsParameters['test'];
export { parameters, runStep };