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

    Interface KeyItem<K, V>

    Represents a key-value pair where the value is wrapped in a Result.

    interface KeyItem<K, V> {
        key: K;
        value: Result<V>;
    }

    Type Parameters

    • K

      The key type

    • V

      The value type

    Index

    Properties

    Properties

    key: K
    value: Result<V>