Information passed to each repl command function

interface ReplCommandInformation {
    allowRSessionAccess: boolean;
    config: FlowrConfigOptions;
    output: ReplOutput;
    parser: KnownParser;
    remainingLine: string;
}

Properties

allowRSessionAccess: boolean
output: ReplOutput
parser: KnownParser
remainingLine: string