/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Observable } from 'rxjs'; import { DateRange, SchedulerView } from '../types'; /** * Contains the context for the built-in toolbar components * ([see example](https://www.telerik.com/kendo-angular-ui/components/scheduler/toolbar#setting-the-template-context)). * * @hidden */ export interface ToolbarContext { dateRange: Observable; selectedDate: Observable; views?: SchedulerView[]; selectedView?: SchedulerView; }