8 lines
232 B
TypeScript
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";
|
|
}
|