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