/** * @author Martin Karkowski * @email m.karkowski@zema.de * @create date 2021-06-04 19:38:37 * @modify date 2021-06-04 19:38:37 * @desc This is the exporter for the NoPE-JS Library * */ import { Bridge } from "./communication/bridge"; import { getLayer } from "./communication/getLayer"; import { AmqpLayer } from "./communication/layers/amqpLayer"; import { IoSocketMirrorServer } from "./communication/mirrors/ioSocketMirrorServer"; import { IJsonSchema } from "./types/IJSONSchema"; export const communication = { getLayer, layer: { AmqpLayer }, mirrors: { IoSocketMirrorServer }, bridge: Bridge }; export type types = { IJSONSchema: IJsonSchema } export const helpers = { };