import type { WallpaperId } from "./WallpaperId.js"; import type { WorkspaceId } from "./WorkspaceId.js"; export type DesktopWorkspace = { id: WorkspaceId; name: string | null; /** * react-icon icon name */ icon: string | null; wallpaper: WallpaperId | null; windows: Array; }; //# sourceMappingURL=DesktopWorkspace.d.ts.map