add VNCVM
This commit is contained in:
11
cvmts/src/VM.ts
Normal file
11
cvmts/src/VM.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import VMDisplay from "./VMDisplay.js";
|
||||
|
||||
export default interface VM {
|
||||
Start(): Promise<void>;
|
||||
Stop(): Promise<void>;
|
||||
Reboot(): Promise<void>;
|
||||
Reset(): Promise<void>;
|
||||
MonitorCommand(command: string): Promise<any>;
|
||||
GetDisplay(): VMDisplay;
|
||||
SnapshotsSupported(): boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user