UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

10 lines (9 loc) 349 B
#!/usr/bin/env node import { Command } from '@commander-js/extra-typings'; import { Chapter, Variant } from '../types'; export declare const transpilerCommand: Command<[string], { variant: Variant.DEFAULT | Variant.NATIVE | Variant.LAZY | Variant.GPU; chapter: Chapter; pretranspile?: true | undefined; out?: string | undefined; }>;