UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

11 lines (10 loc) 466 B
import { within } from '@storybook/test'; /** * Wrapper to select an option in a react-select component * * @param canvas - The canvas where the input is present. * @param input - The input element associated with the react-select component. * @param optionOrOptions - The option or options to select. */ declare const rsSelect: (canvas: ReturnType<typeof within>, input: HTMLElement, optionOrOptions: string | string[]) => Promise<void>; export { rsSelect };