/** * An interface that defines dictionay type * @interface * * @author Dilip Kola */ export interface IDictionary { [key: string]: T; }