Socket
Socket
Sign inDemoInstall

@highoutput/amqp

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@highoutput/amqp - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

8

build/index.d.ts

@@ -24,11 +24,11 @@ import Client, { ClientOptions } from './lib/client';

constructor(options?: Partial<AmqpOptions>);
createClient<TInput extends any[] = any[], TOutput = any>(queue: string, options?: ClientOptions): Promise<{
createClient<TInput extends any[] = any[], TOutput = any>(queue: string, options?: Partial<ClientOptions>): Promise<{
(...args: TInput): Promise<TOutput | null>;
client: Client<TInput, TOutput>;
}>;
createWorker<TInput extends any[] = any[], TOutput = any>(queue: string, handler: (...args: TInput) => Promise<TOutput>, options?: WorkerOptions): Promise<Worker<TInput, TOutput>>;
createPublisher<TInput extends any[] = any[]>(topic: string, options?: PublisherOptions): Promise<Publisher<TInput>>;
createSubscriber<TInput extends any[] = any[]>(topic: string, handler: (...args: TInput) => Promise<void>, options?: SubscriberOptions): Promise<Subscriber<TInput>>;
createWorker<TInput extends any[] = any[], TOutput = any>(queue: string, handler: (...args: TInput) => Promise<TOutput>, options?: Partial<WorkerOptions>): Promise<Worker<TInput, TOutput>>;
createPublisher<TInput extends any[] = any[]>(topic: string, options?: Partial<PublisherOptions>): Promise<Publisher<TInput>>;
createSubscriber<TInput extends any[] = any[]>(topic: string, handler: (...args: TInput) => Promise<void>, options?: Partial<SubscriberOptions>): Promise<Subscriber<TInput>>;
stop(): Promise<void>;
}
//# sourceMappingURL=index.d.ts.map
{
"name": "@highoutput/amqp",
"version": "0.2.4",
"version": "0.2.5",
"description": "A simplified abstraction of the AMQP 1.0 protocol",

@@ -52,3 +52,3 @@ "keywords": [

},
"gitHead": "68b46c2b45c12b580e500ef269c14162a0328fa9"
"gitHead": "56ba5b54bddc387651974889b1aa005c97e7ff14"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc