AliasedAggregate class

An AggregateFunction with alias.

Signature:

export declare class AliasedAggregate 

Constructors

Constructor Modifiers Description
(constructor)(aggregate, alias, _methodName) Constructs a new instance of the AliasedAggregate class

Properties

Property Modifiers Type Description
aggregate AggregateFunction
alias string

AliasedAggregate.(constructor)

Constructs a new instance of the AliasedAggregate class

Signature:

constructor(aggregate: AggregateFunction, alias: string, _methodName: string | undefined);

Parameters

Parameter Type Description
aggregate AggregateFunction
alias string
_methodName string | undefined

AliasedAggregate.aggregate

Signature:

readonly aggregate: AggregateFunction;

AliasedAggregate.alias

Signature:

readonly alias: string;