Type helper that represents a KeyedNgItem without its value property.
Useful for contexts where the value is not yet available or not needed,
such as in callback signatures.
Type Parameters
K
The key type
CTX
The context type
Example
functionprocess(item: KeyedNgItemWithoutValue<string, MyContext>) { console.log(item.refKey, item.givenKey, item.ctx); // item.value is not available }
Type helper that represents a KeyedNgItem without its value property.
Useful for contexts where the value is not yet available or not needed, such as in callback signatures.