Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Interfaces

Variables

Namespaces

Classes

Type Aliases

Variables

Type Aliases

_Command: typeof <internal>.Command
BooleanResponse: 1 | 0
Callback<T>: ((err: Error | null, res: T) => void)

Type Parameters

  • T

Type declaration

    • (err: Error | null, res: T): void
    • Parameters

      • err: Error | null
      • res: T

      Returns void

KeyType: string | <internal>.Buffer
ValueType: string | <internal>.Buffer | number | any[]
BufferEncoding: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex"
TypedArray: Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | <internal>.BigUint64Array | <internal>.BigInt64Array | Float32Array | Float64Array
ArrayBufferView: <internal>.TypedArray | DataView
LookupFunction: ((hostname: string, options: <internal>.LookupOneOptions, callback: ((err: <internal>.ErrnoException | null, address: string, family: number) => void)) => void)

Type declaration

SocketReadyState: "opening" | "open" | "readOnly" | "writeOnly" | "closed"
SecureVersion: "TLSv1.3" | "TLSv1.2" | "TLSv1.1" | "TLSv1"
IteratorResult<T, TReturn>: <internal>.IteratorYieldResult<T> | <internal>.IteratorReturnResult<TReturn>

Type Parameters

  • T

  • TReturn = any

Pick<T, K>: { [ P in K]: T[P] }

From T, pick a set of properties whose keys are in the union K

Type Parameters

  • T

  • K extends keyof T

Record<K, T>: { [ P in K]: T }

Construct a type with a set of properties K of type T

Type Parameters

  • K extends keyof any

  • T

Exclude<T, U>: T extends U ? never : T

Exclude from T those types that are assignable to U

Type Parameters

  • T

  • U

Omit<T, K>: <internal>.Pick<T, <internal>.Exclude<keyof T, K>>

Construct a type with the properties of T except for those in type K.

Type Parameters

  • T

  • K extends keyof any

ArrayBufferLike: ArrayBufferTypes[keyof ArrayBufferTypes]
CallbackHandler: ((message: <internal>.RabbitMessage) => void)

Type declaration

ReplyCallback<T>: ((content: Error | T) => void)

Type Parameters

Type declaration

    • (content: Error | T): void
    • Parameters

      • content: Error | T

      Returns void

RpcReplyCallback<T>: ((message: <internal>.RabbitMessage<T>, reply: <internal>.ReplyCallback, awkFunc: (() => void) | undefined | Error, err?: Error) => void)

Type Parameters

  • T

Type declaration

PublishCallback<T>: ((message: <internal>.RabbitMessage<T>, err: Error | undefined) => void)

Type Parameters

  • T

Type declaration

QueueCallback: ((message: <internal>.RabbitMessage, err?: Error) => void)

Type declaration

RabbitContentType: <internal>.Buffer | string | number | unknown

Generated using TypeDoc