@eagleoutice/flowr-dev
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
8 lines (7 loc) • 534 B
TypeScript
import type { ReplCodeCommand } from './repl-main';
import type { CommandCompletions } from '../core';
/** the `:signature` subcommand names, offered as completions for its first argument */
export declare const signatureSubcommandNames: string[];
/** completes `:signature`: its subcommands, then a file path for `add` (query args are freeform names) */
export declare function replSignatureCompleter(splitLine: readonly string[], startingNewArg: boolean): CommandCompletions;
export declare const signatureCommand: ReplCodeCommand;