UNPKG

@testing-library/user-event

Version:
11 lines (10 loc) 251 B
/** * Set the selection */ export declare function setSelection({ focusNode, focusOffset, anchorNode, anchorOffset, }: { anchorNode?: Node; /** DOM offset */ anchorOffset?: number; focusNode: Node; focusOffset: number; }): void;