@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) • 311 B
TypeScript
/// <reference types="node" />
/// <reference types="sinon" />
import { Server } from 'http';
import { BasePlugin } from './BasePlugin';
export declare class TestingPluginRunner {
plugin: BasePlugin;
server: Server;
constructor(plugin: BasePlugin, transport?: sinon.SinonStub);
start(): void;
}