Files

8 lines
243 B
TypeScript
Raw Permalink Normal View History

2026-05-31 18:44:04 +08: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";
}