Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type Aliases

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
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]
RabbitContentType: <internal>.Buffer | string | number | unknown

Variables

Generated using TypeDoc