scroll/src/bun/mod.ts

15 lines
286 B
JavaScript
Raw Permalink Normal View History

2023-10-31 14:47:59 -04:00
/**
* The main entrypoint when using Bun as the runtime
2023-10-31 14:47:59 -04:00
*/
2024-07-25 11:47:44 -04:00
import { CommonRuntime, IRuntime, RunTimeType } from '../common/runtime.ts';
2024-07-05 15:51:30 -04:00
/**
* The Bun Runtime implementation
*/
const BunRuntime: IRuntime = {
2024-07-12 10:58:23 -04:00
...CommonRuntime,
name: RunTimeType.Bun,
};
export default BunRuntime;