Represents a reference to a value of type T.

interface IRef<T = any> {
    current: T;
}

Type Parameters

  • T = any

    The type of the value referenced by this reference.

Properties

Properties

current: T