UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

10 lines (9 loc) 375 B
import { Command } from '@commander-js/extra-typings'; import { Chapter } from '../langs'; export declare const compileToChoices: readonly ["ast", "binary", "debug", "json"]; export declare const getSVMCCommand: () => Command<[string], { chapter: Chapter; compileTo: "json" | "binary" | "ast" | "debug"; out?: string | undefined; internals: string[]; }, {}>;