Interface ParsedQueryLine<QueryType>

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

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

Type Parameters

Properties

Properties

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

The parsed query or queries from the line.

rCode?: string

Optional R code associated with the query.