export interface Dict { [key: string]: T; } export interface Constructor { new (...args: any[]): T; } export declare type POJO = Dict;