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

interface ParsedQueryLine {
    query: undefined | Query | Query[];
    rCode?: string;
}

Properties

Properties

query: undefined | Query | Query[]

The parsed query or queries from the line.

rCode?: string

Optional R code associated with the query.