Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetFormatsOptions

Hierarchy

  • GetFormatsOptions

Index

Properties

Optional filterBy

filterBy: { <S>(predicate: (value: VideoStreamEntity, index: number, array: VideoStreamEntity[]) => value is S, thisArg?: any): S[]; (predicate: (value: VideoStreamEntity, index: number, array: VideoStreamEntity[]) => unknown, thisArg?: any): VideoStreamEntity[] }

Type declaration

    • Returns the elements of an array that meet the condition specified in a callback function.

      Type parameters

      Parameters

      • predicate: (value: VideoStreamEntity, index: number, array: VideoStreamEntity[]) => value is S

        A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.

      • Optional thisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns S[]

    • Returns the elements of an array that meet the condition specified in a callback function.

      Parameters

      • predicate: (value: VideoStreamEntity, index: number, array: VideoStreamEntity[]) => unknown

        A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.

      • Optional thisArg: any

        An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

      Returns VideoStreamEntity[]

Optional requestOptions

requestOptions: AxiosRequestConfig

Generated using TypeDoc