From 68de12d782c53120a4ea9351d27a69b7fb2441d7 Mon Sep 17 00:00:00 2001 From: Black-Hole1 Date: Tue, 31 Oct 2023 14:37:26 +0800 Subject: [PATCH] refactor(type): export type --- src/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e0bddc8..aeaaff4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,4 +5,10 @@ export const createDarwinOVM = (options: OVMDarwinOptions): Promise = return DarwinOVM.create(options); }; -export type { OVMDarwinOptions, DarwinOVM }; +export type { + OVMDarwinOptions, + OVMInfo, + OVMVfkitState, + OVMVfkitFullState, +} from "./type"; +export type { DarwinOVM };