interface ReplCompletionTestCase {
    completer: (
        splitLine: readonly string[],
        startingNewArg: boolean,
        config: FlowrConfigOptions,
    ) => CommandCompletions;
    config?: object;
    expectedCompletions: readonly string[];
    label: string;
    splitLine: readonly string[];
    startingNewArg: boolean;
}

Properties

completer: (
    splitLine: readonly string[],
    startingNewArg: boolean,
    config: FlowrConfigOptions,
) => CommandCompletions
config?: object
expectedCompletions: readonly string[]
label: string
splitLine: readonly string[]
startingNewArg: boolean