UNPKG

@microfleet/core

Version:
19 lines (18 loc) 487 B
import { Microfleet, ValidatorPlugin, PluginInterface } from '../'; /** * Plugin Name */ export declare const name = "amqp"; /** * Plugin Type */ export declare const type: "transport"; /** * Relative priority inside the same plugin group type */ export declare const priority = 0; /** * Attaches plugin to the Mthis class. * @param {Object} config - AMQP plugin configuration. */ export declare function attach(this: Microfleet & ValidatorPlugin, opts?: any): PluginInterface;