/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the Kendo UI DateInput incremental steps interface. * Defines all possible incremental steps in the `DateInput` component. * * @example * ```html * * * ``` */ export interface DateInputIncrementalSteps { year?: number; month?: number; day?: number; hour?: number; minute?: number; second?: number; millisecond?: number; }