UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

20 lines (19 loc) 692 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Direction = void 0; // tslint:disable:max-line-length /** * An enumeration which represents the horizontal direction. The `Forward` option moves forward. The `Backward` option moves backward. */ 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 || (exports.Direction = Direction = {})); // tslint:enable:max-line-length