/** * The main entrypoint when using Bun as the runtime */ import { IRuntime, RunTimeType } from '../common/mod.ts'; import BunFFI from './ffi.ts'; import BunTerminalIO from './terminal_io.ts'; import BunFileIO from './file_io.ts'; const BunRuntime: IRuntime = { name: RunTimeType.Bun, file: BunFileIO, ffi: BunFFI, term: BunTerminalIO, onEvent: (eventName: string, handler: (e: Event) => void) => process.on(eventName, handler), onExit: (cb: () => void): void => { process.on('beforeExit', cb); process.on('exit', cb); process.on('SIGINT', cb); }, exit: (code?: number) => process.exit(code), }; export default BunRuntime;