import type { Relaunch } from "./Relaunch.js"; export type WegItemData = { /** * internal UUID to differentiate items */ id: string; /** * display name of the item */ displayName: string; /** * Application user model id. */ umid: string | null; /** * path to file or program. */ path: string; /** * the item will persist after all windows are closed */ pinned: boolean; /** * this item should not be pinnable */ preventPinning: boolean; /** * custom information to relaunch this app, if none, UMID or path should be used */ relaunch: Relaunch | null; }; //# sourceMappingURL=WegItemData.d.ts.map