import { IPlugin, PluginHandler } from "./types"; export class Plugin implements IPlugin { public handler: PluginHandler; public options?: any; constructor(handler: PluginHandler, options?: any) { this.handler = handler; this.options = options; } }