mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-11 16:52:42 +08:00
8 lines
243 B
TypeScript
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";
|
||
|
}
|