@adviser/cement - v0.0.0
    Preparing search index...

    Type Alias KeyedNgItemWithoutValue<K, CTX>

    KeyedNgItemWithoutValue: Omit<KeyedNgItem<K, never, CTX>, "value">

    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

    function process(item: KeyedNgItemWithoutValue<string, MyContext>) {
    console.log(item.refKey, item.givenKey, item.ctx);
    // item.value is not available
    }