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

10 lines (9 loc) 267 B
/// <reference types="node" /> import { BasePlugin } from "./BasePlugin"; import { Server } from "http"; export declare class TestingPluginRunner { plugin: BasePlugin; server: Server; constructor(plugin: BasePlugin, transport?: any); start(): void; }