UNPKG

@jaricardodev/ews-javascript-api

Version:
16 lines (13 loc) 260 B
/** * Defines the type of aggregation to perform. */ export enum AggregateType { /** * The maximum value is calculated. */ Minimum = 0, /** * The minimum value is calculated. */ Maximum = 1 }