export interface IKeyValuePair {
    key: string;
    value: string;
}

export type KeyValuePairs = IKeyValuePair[];
