Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Namespaces

Classes

Interfaces

Type aliases

Variables

Type aliases

AddHelpTextPosition: "beforeAll" | "before" | "after" | "afterAll"
Algorithm: "HS256" | "HS384" | "HS512" | "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "PS256" | "PS384" | "PS512" | "none"
ArrayBufferLike: ArrayBufferTypes[keyof ArrayBufferTypes]
ArrayBufferView: TypedArray | DataView
AuthorizationHeaders: HttpHeaders & Record<"Authorization", string>
BasicAuthResponse: AuthorizationHeaders
BearerResponse: AuthorizationHeaders
BinaryLike: string | ArrayBufferView
BinaryType: "arraybuffer" | "blob"
BufferEncoding: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "base64url" | "latin1" | "binary" | "hex"
ConversionAccuracy: "casual" | "longterm"
CustomHeaders: [string, string]
DateTimeUnit: "year" | "quarter" | "month" | "week" | "day" | "hour" | "minute" | "second" | "millisecond"
DurationLike: Duration | DurationObjectUnits | number

Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()

DurationUnit: keyof DurationObjectUnits
DurationUnits: DurationUnit | DurationUnit[]
HookEvent: "preAction" | "postAction"
HttpHeaders: Record<string, string>
IteratorResult<T, TReturn>: IteratorYieldResult<T> | IteratorReturnResult<TReturn>

Type parameters

  • T

  • TReturn = any

JWTBearerResponse: AuthorizationHeaders
LookupFunction: (hostname: string, options: LookupOneOptions, callback: (err: ErrnoException | null, address: string, family: number) => void) => void

Type declaration

OauthRefreshResponse: HttpHeaders & Record<"access_token", string> & Record<"refresh_token", string>
OauthResponse: HttpHeaders & Record<"access_token", string>
OmitThisParameter<T>: unknown extends ThisParameterType<T> ? T : T extends (...args: infer A) => infer R ? (...args: A) => R : T

Removes the 'this' parameter from a function type.

Type parameters

  • T

OptionValueSource: "default" | "env" | "config" | "cli"
OutgoingHttpHeader: number | string | string[]
Partial<T>: { [ P in keyof T]?: T[P] }

Make all properties in T optional

Type parameters

  • T

PropertyKey: string | number | symbol
QueryParameters: Record<string, string>
Record<K, T>: { [ P in K]: T }

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

Type parameters

  • K: keyof any

  • T

RequestOptions: <internal>.RequestOptions & SecureContextOptions & { rejectUnauthorized?: boolean; servername?: string }
SecureVersion: "TLSv1.3" | "TLSv1.2" | "TLSv1.1" | "TLSv1"
SocketReadyState: "opening" | "open" | "readOnly" | "writeOnly" | "closed"
ThisParameterType<T>: T extends (this: infer U, ...args: never) => any ? U : unknown

Extracts the type of the 'this' parameter of a function type, or 'unknown' if the function type has no 'this' parameter.

Type parameters

  • T

ToISOFormat: "basic" | "extended"
URIToken: string
UnitOfTime: "day" | "days" | "month" | "months"
WithImplicitCoercion<T>: T | { valueOf: any }

Type parameters

  • T

Variables

Error: ErrorConstructor
Object: ObjectConstructor

Provides functionality common to all JavaScript objects.

SharedArrayBuffer: SharedArrayBufferConstructor

Generated using TypeDoc