/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md */ export default interface KeyValuePair { key:TKey; value:TValue; } export declare type KeyValuePairOrTuple = KeyValuePair | [TKey,TValue]; export interface StringKeyValuePair extends KeyValuePair { } export declare type StringKeyValuePairOrTuple = StringKeyValuePair | [string,TValue];