ixfx
    Preparing search index...

    Type Alias ObjectOptions<V>

    Options when creating a reactive object.

    type ObjectOptions<V extends Record<string, unknown>> = {
        deepEntries: boolean;
        eq: IsEqualContext<V>;
    }

    Type Parameters

    • V extends Record<string, unknown>
    Index

    Properties

    Properties

    deepEntries: boolean

    false by default. If true, inherited fields are included. This is necessary for event args, for example.

    Uses JSON.stringify() by default. Fn that returns true if two values are equal, given a certain path.