neux - v0.16.1
    Preparing search index...

    Type Alias ReactiveValue<T>

    ReactiveValue: T | (() => T)

    A value that is either the desired type directly, or a function that returns it.

    When a function is provided, it will be called inside a reactive effect so that its return value updates automatically when tracked properties change.

    Type Parameters

    • T

      The type of the value.