UNPKG

266 BPlain TextView Raw
1import { IPlugin, PluginHandler } from "./types";
2
3export class Plugin implements IPlugin {
4 public handler: PluginHandler;
5 public options?: any;
6 constructor(handler: PluginHandler, options?: any) {
7 this.handler = handler;
8 this.options = options;
9 }
10}