You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
2 years ago
|
import { click, dblClick } from './click';
|
||
|
import { type } from './type';
|
||
|
import { clear } from './clear';
|
||
|
import { tab } from './tab';
|
||
|
import { hover, unhover } from './hover';
|
||
|
import { upload } from './upload';
|
||
|
import { paste } from './paste';
|
||
|
import { keyboard, specialCharMap } from './keyboard';
|
||
|
declare const userEvent: {
|
||
|
click: typeof click;
|
||
|
dblClick: typeof dblClick;
|
||
|
type: typeof type;
|
||
|
clear: typeof clear;
|
||
|
tab: typeof tab;
|
||
|
hover: typeof hover;
|
||
|
unhover: typeof unhover;
|
||
|
upload: typeof upload;
|
||
|
selectOptions: (args_0: Element, args_1: string | string[] | HTMLElement | HTMLElement[], args_2?: MouseEventInit | undefined, args_3?: import("./utils").PointerOptions | undefined) => void;
|
||
|
deselectOptions: (args_0: Element, args_1: string | string[] | HTMLElement | HTMLElement[], args_2?: MouseEventInit | undefined, args_3?: import("./utils").PointerOptions | undefined) => void;
|
||
|
paste: typeof paste;
|
||
|
keyboard: typeof keyboard;
|
||
|
};
|
||
|
export default userEvent;
|
||
|
export { specialCharMap as specialChars };
|
||
|
export type { keyboardKey } from './keyboard';
|