@eagleoutice/flowr - v2.10.2
    Preparing search index...

    Interface ParsedQueryLine<QueryType>

    The result of parsing a query line from, e.g., the repl.

    interface ParsedQueryLine<QueryType extends BaseQueryFormat["type"]> {
        query:
            | QueryArgumentsWithType<QueryType>
            | QueryArgumentsWithType<QueryType>[]
            | undefined;
        rCode?: string;
    }

    Type Parameters

    Index

    Properties

    Properties

    query:
        | QueryArgumentsWithType<QueryType>
        | QueryArgumentsWithType<QueryType>[]
        | undefined

    The parsed query or queries from the line.

    rCode?: string

    Optional R code associated with the query.