@wpazderski/js-utils
    Preparing search index...

    Interface RegistryEntryWithKey<TKey, TValue>

    Represents an entry in a registry with its key.

    interface RegistryEntryWithKey<TKey extends RegistryEntryKey, TValue> {
        entry: TValue;
        entryKey: TKey;
    }

    Type Parameters

    • TKey extends RegistryEntryKey

      The type of the entry key.

    • TValue

      The type of the entry value.

    Index

    Properties

    Properties

    entry

    entry: TValue

    The value of the registry entry.

    entryKey: TKey

    The key of the registry entry.