UNPKG

pm-controls

Version:
17 lines (13 loc) 326 B
export class ColumnAggregate { public IsSum: Boolean; public static get Sum(): ColumnAggregate { var type = new ColumnAggregate(); type.IsSum = true; return type; } public get Name(): string { if (this.IsSum) return "Sum"; return; } }