import type { MonitorSettingsByWidget } from "./MonitorSettingsByWidget.js"; import type { WorkspaceConfiguration } from "./WorkspaceConfiguration.js"; import type { WorkspaceId } from "./WorkspaceId.js"; export type MonitorConfiguration = { /** * dictionary of settings by widget */ byWidget: MonitorSettingsByWidget; /** * Id of the wallpaper collection to use in this monitor.\ * If not set, the default wallpaper collection will be used. */ wallpaperCollection: string | null; /** * dictionary of settings by workspace on this monitor */ byWorkspace: { [key in WorkspaceId]: WorkspaceConfiguration; }; }; //# sourceMappingURL=MonitorConfiguration.d.ts.map