21stio/nodejs-queue-adapter

View on GitHub
typescript/adapter/activemq/ActiveMqConfig.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {Config} from "../abstract/Config";

export class ActiveMqConfig extends Config {
    host:string = 'localhost';
    port:number = 5672;
    username:string;
    password:string;
}