@true-directive/base
Version:
The set of base classes for the TrueDirective Grid
22 lines (21 loc) • 580 B
TypeScript
/**
* Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
* @link https://truedirective.com/
* @license MIT
*/
export declare class SummaryType {
name: string;
shortName: string;
footerText: string;
static SUM: SummaryType;
static MIN: SummaryType;
static MAX: SummaryType;
static COUNT: SummaryType;
static AVERAGE: SummaryType;
constructor(name: string, shortName: string, footerText: string);
}
export declare class Summary {
type: SummaryType;
constructor(type: SummaryType);
value: any;
}