@progress/kendo-date-math
Version:
Kendo UI typescript package exporting functions for Date manipulations
14 lines (13 loc) • 387 B
TypeScript
/**
* An enumeration which represents the horizontal direction. The `Forward` option moves forward. The `Backward` option moves backward.
*/
export declare enum Direction {
/**
* The `Forward` value with an underlying `1` number value.
*/
Forward = 1,
/**
* The `Backward` value with an underlying `-1` (minus one) number value.
*/
Backward = -1,
}