@serverless-plugin-sqs-local/elasticmq-localhost
Version:
ElasticMQ runner for development and testing
11 lines (10 loc) • 334 B
TypeScript
import { Options } from './Config';
declare class ElasticMQ {
private instances;
constructor();
install: (options?: Options) => Promise<import("./install").InstallResult>;
start: (options?: Options) => number;
stop: (port: number) => void;
}
declare const elasticmq: ElasticMQ;
export default elasticmq;