import type { MultimonitorBehaviour } from "./MultimonitorBehaviour.js"; import type { WallpaperId } from "./WallpaperId.js"; export type SeelenWallSettings = { enabled: boolean; /** * 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