export default interface IDictionary<T> {
    [key: string]: T;
}
