UNPKG

jintr

Version:

A tiny JavaScript interpreter written in TypeScript.

6 lines (5 loc) 185 B
import type ESTree from 'estree'; import BaseJSNode from './BaseJSNode.js'; export default class VariableDeclaration extends BaseJSNode<ESTree.VariableDeclaration> { run(): void; }