Skip to main content
Version: Current

Meet Types

  • MeetCommandAction

    An event that is used to send a command to the Jitsi Meet API.

    Members

    • args? any[]

      The arguments for the command (if any).

    • command string

      The name of the command to execute.

    • playerId? string

      The ID of the player that created this task. Set by remote action handlers when a task is recieved from a remote player.

    • taskId (string | number)

      The ID of the async task.

    • type "meet_command"

      The type of the event. This helps determine how the event should be applied to the state.

    • uncopiable? boolean

      Whether the action can be structure cloned. If true, then the action should not be passed across message ports without special handling.

  • MeetFunctionAction

    An event that is used to call Jitsi Meet functions.

    Members

    • args? any[]

      The arguments for the function (if any).

    • functionName string

      The name of the function to execute.

    • playerId? string

      The ID of the player that created this task. Set by remote action handlers when a task is recieved from a remote player.

    • taskId (string | number)

      The ID of the async task.

    • type "meet_function"

      The type of the event. This helps determine how the event should be applied to the state.

    • uncopiable? boolean

      Whether the action can be structure cloned. If true, then the action should not be passed across message ports without special handling.