Type Alias Computed<T>

Computed: {
    "[toStringTag]": "Computed";
    get: () => T;
    map: <U extends {}>(cb: ComputedCallbacks<U, [Computed<T>]>) => Computed<U>;
    match: (cb: EffectCallbacks<[Computed<T>]>) => void;
}

Type Parameters

  • T extends {}

Type declaration