UNPKG

reactuals

Version:

A useful package providing a collection of 50+ React hooks and utilities to simplify React development.

7 lines (6 loc) 210 B
/// <reference types="react" /> export interface TextSelection { text: string; range: Range | null; } export declare function useTextSelection(elementRef?: React.RefObject<HTMLElement>): TextSelection;