import type { OldWegItemData } from "./OldWegItemData.js"; import type { WegItemData } from "./WegItemData.js"; export type WegItem = { "type": "DeprecatedOldPinned"; } & OldWegItemData | { "type": "AppOrFile"; } & WegItemData | { "type": "Separator"; id: string; } | { "type": "Media"; id: string; } | { "type": "StartMenu"; id: string; } | { "type": "ShowDesktop"; id: string; } | { "type": "TrashBin"; id: string; }; //# sourceMappingURL=WegItem.d.ts.map