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