@microfleet/core
Version:
Abstract microservice core
19 lines (18 loc) • 487 B
TypeScript
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;