export interface StringObject {
    [key: string]: string;
}
export interface AnyObject {
    [key: string]: any;
}
