/** * @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 TimePicker. */ export interface TimePickerIncrementalSteps { /** 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; }