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

    Interface KeyedResolveOnceItem<K, T, CTX>

    Represents an item in a KeyedResolvOnce collection with its resolved result.

    interface KeyedResolveOnceItem<K, T, CTX extends NonNullable<object>> {
        key: K;
        value: Result<T>;
        item: KeyedNgItem<
            K,
            ResolveOnce<WithOptionalReset<T>, KeyedNgItemWithoutValue<K, CTX>>,
            CTX,
        >;
    }

    Type Parameters

    • K

      The key type

    • T

      The value type

    • CTX extends NonNullable<object>

      The context type

    Index

    Properties

    Properties

    key: K

    The key associated with this item

    value: Result<T>

    The resolved value wrapped in a Result (Ok or Err)

    The complete KeyedNgItem containing metadata