UNPKG

jintr

Version:

A tiny JavaScript interpreter written in TypeScript.

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