js-slang
Version:
Javascript-based implementations of Source, written in Typescript
12 lines (11 loc) • 425 B
TypeScript
import { Command } from '@commander-js/extra-typings';
import { Chapter, Variant } from '../types';
export declare const getReplCommand: () => Command<[string | undefined], {
chapter: Chapter;
variant: Variant;
languageOptions: import("../types").LanguageOptions | {};
verbose?: true | undefined;
modulesBackend?: string | undefined;
repl?: true | undefined;
optionsFile?: string | undefined;
}>;