UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

10 lines (9 loc) 228 B
/** * ES6 Map with additional `add` method to accumulate items. * * @internal */ export declare class AccumulatorMap<K, T> extends Map<K, Array<T>> { get [Symbol.toStringTag](): string; add(key: K, item: T): void; }