import type { RelaunchArguments } from "./RelaunchArguments.js"; export type Relaunch = { /** * program to be executed */ command: string; /** * arguments to be passed to the relaunch program */ args: RelaunchArguments | null; /** * path where ejecute the relaunch command */ workingDir: string | null; /** * custom relaunch/window icon */ icon: string | null; }; //# sourceMappingURL=Relaunch.d.ts.map