sesaparcours
    Preparing search index...

    Interface MapLike<TKey, TValue>

    interface MapLike<TKey = string, TValue = unknown> {
        get(key: TKey): TValue;
        has(key: TKey): boolean;
        keys(): IterableIterator<TKey, any, any> | TKey[];
        set(key: TKey, value: TValue): MapLike<TKey, TValue>;
    }

    Type Parameters

    • TKey = string
    • TValue = unknown
    Index

    Methods

    Methods

    • Parameters

      Returns TValue

    • Parameters

      Returns boolean