UNPKG

@mediarithmics/plugins-nodejs-sdk

Version:

This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate

11 lines (10 loc) 290 B
/// <reference types="node" /> import { BasePlugin } from "./BasePlugin"; import { Server } from "http"; export declare class ProductionPluginRunner { pluginPort: number; plugin: BasePlugin; server: Server; constructor(plugin: BasePlugin); start(port?: number): void; }