UNPKG

@testing-library/user-event

Version:
11 lines (10 loc) 350 B
/** * Determine which selection logic and selection ranges to consider. */ export declare function getTargetTypeAndSelection(node: Node): { readonly type: "input"; readonly selection: import("../../document").UISelectionRange; } | { readonly type: "contenteditable" | "default"; readonly selection: Selection | null | undefined; };