Type Alias State<T>

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

Type Parameters

  • T extends {}

Type declaration

  • [toStringTag]: "State"
  • match: (cb: EffectCallbacks<[State<T>]>) => void
  • get:function
    • Returns T

  • map:function
  • set:function
    • Parameters

      Returns void

  • update:function
    • Parameters

      • fn: (v: T) => T

      Returns void