UNPKG

e2ed

Version:

E2E testing framework over Playwright

8 lines (7 loc) 361 B
import type { Selector, WithStabilizationInterval } from '../types/internal'; type Options = Record<string, unknown> & WithStabilizationInterval; /** * Dispatches an event over a specified DOM element. */ export declare const dispatchEvent: (selector: Selector, eventName: string, { stabilizationInterval, ...options }?: Options) => Promise<void>; export {};