import type { JsonObject } from "@elgato/utils"; import type { DidReceiveGlobalSettings } from "../../api/index.js"; import { Event } from "./event.js"; /** * Provides event information for when the plugin received the global settings. */ export declare class DidReceiveGlobalSettingsEvent extends Event> { /** * Settings associated with the event. */ readonly settings: T; /** * Initializes a new instance of the {@link DidReceiveGlobalSettingsEvent} class. * @param source Source of the event, i.e. the original message from Stream Deck. */ constructor(source: DidReceiveGlobalSettings); }