MediaSFU Angular
    Preparing search index...

    Class LaunchSettings

    Toggles the visibility state of the settings modal.

    The options for launching settings.

    Function to update the visibility state of the settings modal.

    Current visibility state of the settings modal.

    This method toggles the current visibility state of the settings modal. If the modal is currently visible, it will be hidden, and vice versa.

    const options: LaunchSettingsOptions = {
    updateIsSettingsModalVisible: (isVisible) => {
    console.log('Settings modal visibility:', isVisible);
    },
    isSettingsModalVisible: false,
    };

    const launchSettingsService = new LaunchSettings();
    launchSettingsService.launchSettings(options);
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Toggles the visibility state of the settings modal.

      Parameters

      • options: LaunchSettingsOptions

        The options for launching settings.

        • updateIsSettingsModalVisible

          Function to update the visibility state of the settings modal.

        • isSettingsModalVisible

          Current visibility state of the settings modal.

      Returns void