Type Alias Query<R>

Query<R>: string & Brand.Brand<"Query"> & {
    [___queryBrand]: R;
}

Query is SQL query serialized as a string with a branded type representing a row it returns.

Type Parameters