UNPKG

rollun-ts-rql

Version:

RQL query object and serializer written in TypeScript

10 lines (9 loc) 397 B
import AbstractNode from './AbstractNode'; import AggregateFunctionNode from './aggregateNodes/AggregateFunctionNode'; export default class Select extends AbstractNode { readonly name = "select"; private _fields; constructor(fields: (string | AggregateFunctionNode)[]); get fields(): (string | AggregateFunctionNode)[]; set fields(value: (string | AggregateFunctionNode)[]); }