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
Properties
updates
updates: BackUpdates<{ [K in string | number | symbol]: typeof SKIP | S[K] }>
Per-parent updates: a value (written verbatim,
undefinedincluded) orSKIPto leave that parent. A short array skips the trailing parents.