Zoom Video SDK for React - v0.0.2
    Preparing search index...

    Interface RefObject<T>

    Created by createRef, or useRef when passed null.

    const ref = createRef<HTMLDivElement>();

    ref.current = document.createElement('div'); // Error
    interface RefObject<T> {
        current: T;
    }

    Type Parameters

    • T

      The type of the ref's value.

    Index

    Properties

    Properties

    current: T

    The current value of the ref.