Files

8 lines
243 B
TypeScript
Raw Permalink Normal View History

2026-03-25 14:14:07 +01:00
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";
}