Update index.ts

This commit is contained in:
Corey Johnson 2025-10-16 10:25:53 -07:00
parent b7cc0fc064
commit cabdc15253

View File

@ -7,6 +7,6 @@ export async function run(bytecode: Bytecode): Promise<Value> {
return await vm.run()
}
export { type Bytecode, toBytecode } from "./bytecode"
export { type Bytecode, toBytecode, type ProgramItem } from "./bytecode"
export { type Value, toValue, toString, toNumber, fromValue, toNull, wrapNative } from "./value"
export { VM } from "./vm"