/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The settings for the current time marker.
 */
export interface CurrentTimeSettings {
    /**
     * The update interval (in milliseconds) of the current time marker.
     * Defaults to `60000` (a minute).
     */
    updateInterval?: number;
    /**
     * Specifies if the current time marker will be displayed.
     * Defaults to `true`.
     */
    enabled?: boolean;
}
