sudovanilla-website/public/@shoelace-style/shoelace/cdn/internal/test.d.ts

32 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-05-13 22:34:06 -05:00
/** A testing utility that measures an element's position and clicks on it. */
export declare function clickOnElement(
/** The element to click */
el: Element,
/** The location of the element to click */
position?: 'top' | 'right' | 'bottom' | 'left' | 'center',
/** The horizontal offset to apply to the position when clicking */
offsetX?: number,
/** The vertical offset to apply to the position when clicking */
offsetY?: number): Promise<void>;
/** A testing utility that moves the mouse onto an element. */
export declare function moveMouseOnElement(
/** The element to click */
el: Element,
/** The location of the element to click */
position?: 'top' | 'right' | 'bottom' | 'left' | 'center',
/** The horizontal offset to apply to the position when clicking */
offsetX?: number,
/** The vertical offset to apply to the position when clicking */
offsetY?: number): Promise<void>;
/** A testing utility that drags an element with the mouse. */
export declare function dragElement(
/** The element to drag */
el: Element,
/** The horizontal distance to drag in pixels */
deltaX?: number,
/** The vertical distance to drag in pixels */
deltaY?: number, callbacks?: {
afterMouseDown?: () => void | Promise<void>;
afterMouseMove?: () => void | Promise<void>;
}): Promise<void>;