export default interface MutableObject<T> {
    [k: string]: T;
}
