/*! * @author electricessence / https://github.com/electricessence/ * @license MIT */ export default interface KeyValuePair { key: TKey; value: TValue; // eslint-disable-next-line semi } export declare type KeyValuePairOrTuple = KeyValuePair | [TKey, TValue]; export declare type StringKeyValuePair = KeyValuePair; export declare type StringKeyValuePairOrTuple = StringKeyValuePair | [string, TValue];