2022-09-30 05:39:11 +00:00

8 lines
232 B
TypeScript

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