import type { MultimonitorBehaviour } from "./MultimonitorBehaviour.js"; import type { WallpaperId } from "./WallpaperId.js"; export type SeelenWallSettings = { enabled: boolean; /** * Key overrides for widget-declared shortcuts (`shortcut_id -> keys`). */ $shortcuts: { [key in string]: Array; } | null; /** * update interval in seconds */ interval: number; /** * randomize order */ randomize: boolean; /** * collection id, if none default wallpaper will be used */ defaultCollection: string | null; /** * multimonitor behaviour */ multimonitorBehaviour: MultimonitorBehaviour; /** * deprecated, this field will be removed on v3 */ deprecatedBgs: Array | null; }; //# sourceMappingURL=SeelenWallSettings.d.ts.map