import type { ResourceMetadata } from "./ResourceMetadata.js"; import type { WallpaperId } from "./WallpaperId.js"; import type { WallpaperKind } from "./WallpaperKind.js"; export type Wallpaper = { id: WallpaperId; metadata: ResourceMetadata; type: WallpaperKind; url: string | null; filename: string | null; thumbnailUrl: string | null; thumbnailFilename: string | null; /** * Only used if the wallpaper type is `Layered`.\ * Custom css that will be applied only on this wallpaper. */ css: string | null; }; //# sourceMappingURL=Wallpaper.d.ts.map