2023-10-31 14:47:59 -04:00
|
|
|
/**
|
2023-10-31 17:38:15 -04:00
|
|
|
* The main entrypoint when using Bun as the runtime
|
2023-10-31 14:47:59 -04:00
|
|
|
*/
|
2023-10-31 17:38:15 -04:00
|
|
|
|
2023-11-06 15:36:41 -05:00
|
|
|
export * from './terminal_io.ts';
|
2023-10-31 17:38:15 -04:00
|
|
|
|
2023-11-08 15:53:14 -05:00
|
|
|
export const onExit = (cb: () => void): void => {
|
|
|
|
process.on('beforeExit', cb);
|
|
|
|
};
|