nope-js-node
Version:
NoPE Runtime for Nodejs. For Browser-Support please use nope-browser
16 lines (15 loc) • 871 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.availablePlugins = exports.allPlugins = exports.installPlugins = exports.plugin = void 0;
const plugin_1 = require("./plugin");
Object.defineProperty(exports, "plugin", { enumerable: true, get: function () { return plugin_1.plugin; } });
Object.defineProperty(exports, "installPlugins", { enumerable: true, get: function () { return plugin_1.installPlugins; } });
Object.defineProperty(exports, "allPlugins", { enumerable: true, get: function () { return plugin_1.allPlugins; } });
const ackMessages_1 = require("./ackMessages");
const hello_1 = require("./hello");
const rpcWithCallbacks_1 = require("./rpcWithCallbacks");
exports.availablePlugins = {
ackMessages: ackMessages_1.extend,
hello: hello_1.extend,
rpcWithCallbacks: rpcWithCallbacks_1.extend,
};