Files
2026-02-27 22:46:14 +01:00

8 lines
243 B
TypeScript

export declare function macPathToParallelsWindows(file: string): string;
export interface ParallelsVm {
id: string;
name: string;
os: "win-10" | "win-11" | "ubuntu" | "elementary";
state: "running" | "suspended" | "stopped";
}