import type { OldWegItemSubtype } from "./OldWegItemSubtype.js"; import type { RelaunchArguments } from "./RelaunchArguments.js"; export type OldWegItemData = { /** * internal UUID to differentiate items */ id: string; /** * Subtype of the item (mandatory, but is optional for backward compatibility) */ subtype: OldWegItemSubtype; /** * Application user model id. */ umid: string | null; /** * path to file, folder or program. */ path: string; /** * program to be executed */ relaunchProgram: string; /** * arguments to be passed to the relaunch program */ relaunchArgs: RelaunchArguments | null; /** * path where ejecute the relaunch command */ relaunchIn: string | null; /** * display name of the item */ displayName: string; /** * This intention is to prevent pinned state change, when this is neccesary */ pinDisabled: boolean; }; //# sourceMappingURL=OldWegItemData.d.ts.map