Interface IElementRefProps<E>

interface IElementRefProps<E> {
    elementRef?: ((ref) => void);
}

Type Parameters

Hierarchy (view full)

Properties

Properties

elementRef?: ((ref) => void)

Ref handler to access the instance of the internal HTML element.

Type declaration

    • (ref): void
    • Parameters

      • ref: null | E

      Returns void