/**
 *  An interface that defines dictionay type
 *  @interface
 *
 *  @author Dilip Kola <dilip@tensult.com>
 */
export interface IDictionary<T> {
    [key: string]: T;
}
