Interface StatefulBwd<S, C>

    interface StatefulBwd<S extends readonly unknown[], C> {
        complement: C;
        updates: BackUpdates<
            { [K in string
            | number
            | symbol]: typeof SKIP | S[K] },
        >;
    }

    Type Parameters

    • S extends readonly unknown[]
    • C
    Index

    Properties

    Properties

    complement: C
    updates: BackUpdates<{ [K in string | number | symbol]: typeof SKIP | S[K] }>

    Per-parent updates: a value (written verbatim, undefined included) or SKIP to leave that parent. A short array skips the trailing parents.