UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

17 lines (16 loc) 574 B
// tslint:disable:max-line-length /** * An enumeration which represents the horizontal direction. The `Forward` option moves forward. The `Backward` option moves backward. */ export var Direction; (function (Direction) { /** * The `Forward` value with an underlying `1` number value. */ Direction[Direction["Forward"] = 1] = "Forward"; /** * The `Backward` value with an underlying `-1` (minus one) number value. */ Direction[Direction["Backward"] = -1] = "Backward"; })(Direction || (Direction = {})); // tslint:enable:max-line-length