UNPKG

pg-mem

Version:

A memory version of postgres

11 lines 521 B
import { AggregationComputer, AggregationGroupComputer, IValue, _ISelection, _IType, _Transaction } from '../../interfaces-private'; import { ExprCall } from 'pgsql-ast-parser'; declare class SumExpr implements AggregationComputer<number> { private exp; constructor(exp: IValue); get type(): _IType<any>; createGroup(t: _Transaction): AggregationGroupComputer<number>; } export declare function buildSum(this: void, base: _ISelection, call: ExprCall): SumExpr; export {}; //# sourceMappingURL=sum.d.ts.map