UNPKG

204 BTypeScriptView Raw
1import { IPlugin, PluginHandler } from "./types";
2export declare class Plugin implements IPlugin {
3 handler: PluginHandler;
4 options?: any;
5 constructor(handler: PluginHandler, options?: any);
6}