Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

DayRange

Maximum and minimum limits of the day range. DayRange

export interface DayRange {
	'maxBoundary'?: number;
	'minBoundary': number;
}

Properties

NameRequiredTypeDescription
maxBoundaryOptionalnumberMaximum day range. The value null is used for infinite ranges. For example, a minBoundary of 91 and a maxBoundary of null represents a 91+ day range. {number} DayRange
minBoundaryRequirednumberMinimum day range. {number} DayRange

On this page