UNPKG

celery-ts

Version:
21 lines (20 loc) 463 B
/// <reference types="node" /> export interface AmqpOptions { channelMax?: number; frameMax?: number; heartbeat?: number; hostname: string; locale?: string; password?: string; port?: number; protocol: string; username?: string; vhost?: string; } export interface SocketOptions { ca?: Array<Buffer>; cert?: Buffer; key?: Buffer; passphrase?: string; } export declare const DEFAULT_AMQP_OPTIONS: AmqpOptions;