Interface FuncRef<T>

interface FuncRef<T> {
    call(): T;
    set(func: () => T): void;
}

Type Parameters

  • T

Methods

Methods