Backstage
    Preparing search index...

    The AppThemeApi gives access to the current app theme, and allows switching to other options that have been registered as a part of the App.

    type AppThemeApi = {
        activeThemeId$(): Observable<string | undefined>;
        getActiveThemeId(): string | undefined;
        getInstalledThemes(): AppTheme[];
        setActiveThemeId(themeId?: string): void;
    }

    Implemented by

    Index

    Methods