export interface IPlugin {
    name: string;
    global: boolean;
    onClick: Function;
}
