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

19 lines 653 B
"use strict"; /* eslint-disable @typescript-eslint/ban-ts-comment */ /* eslint-disable @typescript-eslint/no-empty-function */ Object.defineProperty(exports, "__esModule", { value: true }); exports.TestingPluginRunner = void 0; class TestingPluginRunner { constructor(plugin, transport) { this.plugin = plugin; if (transport) { // @ts-ignore this.plugin._transport = transport; } } // Start a server serving the plugin app // A port can be provided to run the server on it start() { } } exports.TestingPluginRunner = TestingPluginRunner; //# sourceMappingURL=TestingPluginRunner.js.map