Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace <internal>

Index

Type aliases

APIAnnouncementStatus: { current_time: number; is_running: boolean }

Type declaration

  • current_time: number
  • is_running: boolean
APIAudio: { artist: string; duration: number; id: APIId; type: MediaType }

Type declaration

APICaptureSettings: { audio_routing: [number[]]; disk?: APIDiskCaptureSettings; resi?: APIResiCaptureSettings; rtmp?: APIRTMPCaptureSettings; source: string }

Type declaration

APICaptureStatus: { capture_time: string; status: StatusType; status_description: string }

Type declaration

  • capture_time: string
  • status: StatusType
  • status_description: string
APIDiskCaptureSettings: { encoding?: string; file_location: string; frame_rate: string; resolution: Resolution }

Type declaration

  • Optional encoding?: string
  • file_location: string
  • frame_rate: string
  • resolution: Resolution
APIId: { index: number; name: string; uuid: string }

Type declaration

  • index: number
  • name: string
  • uuid: string
APIMacro: { color: Color; id: APIId }

Type declaration

APIMessage: { id: APIId; message: string; theme: APIId; tokens: [APIMessageText | APIMessageClock | APIMessageTimer] }

Type declaration

APIMessageClock: { clock: { date: DateTimeStyle; is_24_hours: boolean; time: DateTimeStyle }; name: string }

Type declaration

APIMessageText: { name: string; text: { text: string } }

Type declaration

  • name: string
  • text: { text: string }
    • text: string
APIMessageTimer: { name: string; timer: { allows_overrun: boolean; count_down_to_time?: { period: TimeOfDay; time_of_day: number }; countdown?: { duration: number }; elapsed?: { end_time?: number; start_time: number }; format: APIMessageTimerFormat; id: APIId } }

Type declaration

  • name: string
  • timer: { allows_overrun: boolean; count_down_to_time?: { period: TimeOfDay; time_of_day: number }; countdown?: { duration: number }; elapsed?: { end_time?: number; start_time: number }; format: APIMessageTimerFormat; id: APIId }
    • allows_overrun: boolean
    • Optional count_down_to_time?: { period: TimeOfDay; time_of_day: number }
    • Optional countdown?: { duration: number }
      • duration: number
    • Optional elapsed?: { end_time?: number; start_time: number }
      • Optional end_time?: number
      • start_time: number
    • format: APIMessageTimerFormat
    • id: APIId
APIMessageTimerFormat: { hour: TimerStyle; millisecond: TimerStyle; minute: TimerStyle; second: TimerStyle }

Type declaration

APIPlaylist: { id: APIId; items: APIAudio[] }

Type declaration

APIPlaylistFolder: { children: APIPlaylistFolder[]; id: APIId; type: PlaylistFolderType }

Type declaration

APIProp: { id: APIId; is_active: boolean }

Type declaration

  • id: APIId
  • is_active: boolean
APIRTMPCaptureSettings: { encoding: string; file_location?: string; key: string; save_local: boolean; url: string }

Type declaration

  • encoding: string
  • Optional file_location?: string
  • key: string
  • save_local: boolean
  • url: string
APIResiCaptureSettings: { destination_group: string; encoding: string; event_description?: string; event_name?: string }

Type declaration

  • destination_group: string
  • encoding: string
  • Optional event_description?: string
  • Optional event_name?: string
APISlideData: { notes: string; text: string; uuid: string }

Type declaration

  • notes: string
  • text: string
  • uuid: string
APISlideStatus: { current: APISlideData; next: APISlideData }

Type declaration

APISystemInfo: { api_version: string; host_description: string; name: string; os_version: string; platform: SystemPlatform }

Type declaration

  • api_version: string
  • host_description: string
  • name: string
  • os_version: string
  • platform: SystemPlatform
APITimer: { allows_overrun: boolean; count_down_to_time?: { period: TimeOfDay; time_of_day: number }; countdown?: { duration: number }; elapsed?: { end_time?: number; start_time: number }; id: APIId; state?: TimerState; time?: string }

Type declaration

  • allows_overrun: boolean
  • Optional count_down_to_time?: { period: TimeOfDay; time_of_day: number }
  • Optional countdown?: { duration: number }
    • duration: number
  • Optional elapsed?: { end_time?: number; start_time: number }
    • Optional end_time?: number
    • start_time: number
  • id: APIId
  • Optional state?: TimerState
  • Optional time?: string
ClientOptions: { debug?: boolean; ip: string; port: string; requestDebug?: boolean; url: string; version?: string }

Type declaration

  • Optional debug?: boolean
  • ip: string
  • port: string
  • Optional requestDebug?: boolean
  • url: string
  • Optional version?: string
Color: { alpha: number; blue: number; green: number; red: number }

Type declaration

  • alpha: number
  • blue: number
  • green: number
  • red: number
Comparator<K, V>: (firstValue: V, secondValue: V, firstKey: K, secondKey: K) => number

Type parameters

  • K

  • V

Type declaration

    • (firstValue: V, secondValue: V, firstKey: K, secondKey: K): number
    • internal

      Parameters

      • firstValue: V
      • secondValue: V
      • firstKey: K
      • secondKey: K

      Returns number

CountdownSet: { allowOverrun?: boolean; duration?: number; format?: APIMessageTimerFormat }

Type declaration

DateTimeStyle: "none" | "short" | "medium" | "long" | "full"
Exclude<T, U>: T extends U ? never : T

Exclude from T those types that are assignable to U

Type parameters

  • T

  • U

FetchId: string | number
remarks

This is what is used in several parts of the API to fetch by either UUID, name, or by index

IteratorResult<T, TReturn>: IteratorYieldResult<T> | IteratorReturnResult<TReturn>

Type parameters

  • T

  • TReturn = any

MediaType: "audio" | "video" | "image"
Method: "get" | "GET" | "delete" | "DELETE" | "head" | "HEAD" | "options" | "OPTIONS" | "post" | "POST" | "put" | "PUT" | "patch" | "PATCH" | "purge" | "PURGE" | "link" | "LINK" | "unlink" | "UNLINK"
Omit<T, K>: Pick<T, Exclude<keyof T, K>>

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

Type parameters

  • T

  • K: keyof 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: keyof T

PlaylistFolderType: "playlist" | "folder"
ReadonlyCollection<K, V>: ReadonlyMap<K, V> & Omit<Collection<K, V>, "forEach" | "ensure" | "reverse" | "sweep" | "sort" | "get" | "set" | "delete">

Represents an immutable version of a collection

Type parameters

  • K

  • V

Resolution: { height: number; width: number }

Type declaration

  • height: number
  • width: number
StatusType: "active" | "inactive" | "caution" | "error"
SystemPlatform: "win" | "mac" | "unknown"
TimeOfDay: "am" | "pm" | "24_hour"
TimerState: "stopped" | "running" | "complete" | "overrun"
TimerStyle: "none" | "short" | "long" | "remove_short" | "remove_long"

Generated using TypeDoc