/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * The interface which defines all possible incremental steps in the DateInput. */ export interface DateInputIncrementalSteps { /** Controls the incremental step of the year value */ year?: number; /** Controls the incremental step of the month value */ month?: number; /** Controls the incremental step of the day value */ day?: number; /** Controls the incremental step of the hour value */ hour?: number; /** Controls the incremental step of the minute value */ minute?: number; /** Controls the incremental step of the second value */ second?: number; }