ui: {
    actors: typeof ActorDirectory;
    cards: typeof CardsDirectory;
    chat: typeof ChatLog;
    combat: typeof CombatTracker;
    compendium: typeof CompendiumDirectory;
    controls: typeof SceneControls;
    hotbar: typeof Hotbar;
    items: typeof ItemDirectory;
    journal: typeof JournalDirectory;
    macros: typeof MacroDirectory;
    menu: typeof MainMenu;
    nav: typeof SceneNavigation;
    notifications: typeof Notifications;
    pause: typeof GamePause;
    players: typeof Players;
    playlists: typeof PlaylistDirectory;
    scenes: typeof SceneDirectory;
    settings: typeof Settings;
    sidebar: typeof Sidebar;
    tables: typeof RollTableDirectory;
    webrtc: typeof CameraViews;
} = ...

Configure the Application classes used to render various core UI elements in the application. The order of this object is relevant, as certain classes need to be constructed and referenced before others.

Type declaration