export interface IObject {
    [property: string]: any
}

export type IFunction = (...args: any) => any