diff --git a/src/index.ts b/src/index.ts index eedf9dd..4152f66 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,12 +10,8 @@ export const createWindowsOVM = (options: OVMWindowsOptions): WindowsOVM => { return WindowsOVM.create(options); }; -export { - OVMDarwinAppEventValue, - OVMDarwinVzState, - OVMWindowsRunEventValue, - OVMWindowsPrepareEventValue, -} from "./type"; +export type { OVMWindowsInfo } from "./type"; +export { OVMDarwinAppEventValue, OVMDarwinVzState, OVMWindowsRunEventValue, OVMWindowsPrepareEventValue } from "./type"; export type { OVMDarwinEventData, diff --git a/src/type.ts b/src/type.ts index 7b53c91..60811ec 100644 --- a/src/type.ts +++ b/src/type.ts @@ -23,12 +23,12 @@ export enum OVMDarwinAppEventValue { IgnitionProgress = "IgnitionProgress", IgnitionDone = "IgnitionDone", Ready = "Ready", - Exit = "Exit", } export interface OVMDarwinEventData { app: OVMDarwinAppEventValue, error: string, + exit: void, } export interface OVMDarwinInfo {