react-rv
    Preparing search index...

    Type Alias RvOptions<T>

    Options for configuring a reactive variable.

    type RvOptions<T> = {
        eq?: false | EqualFn<T>;
    }

    Type Parameters

    • T

      The type of the reactive variable's value.

    Index

    Properties

    Properties

    eq?: false | EqualFn<T>

    Custom equality function to determine if the value should update. If set to false, the default equality function will be used.