/**
 * Global type defination all type definition must be made here
 */
export interface KeyValuePair {
    [key: string]: any;
}
export interface HttpSetting {
    [Key: string]: string;
    type: string;
    credentials?: any;
}
