UNPKG

bds.js

Version:

A simple interpreter written to simulate and run BDScript Language in JavaScript

9 lines (8 loc) 180 B
import { Runtime } from "./Runtime"; declare class Bag { runtime: Runtime; throwed: any; constructor(runtime: Runtime); addTrace(): void; } export { Bag };