ixfx
    Preparing search index...

    Type Alias IDictionary<K, V>

    type IDictionary<K, V> = {
        get: (key: K) => V | undefined;
        set: (key: K, value: V) => void;
    }

    Type Parameters

    • K
    • V
    Index

    Properties

    Properties

    get: (key: K) => V | undefined
    set: (key: K, value: V) => void