@progress/kendo-angular-scheduler
Version:
Kendo UI Scheduler Angular - Outlook or Google-style angular scheduler calendar. Full-featured and customizable embedded scheduling from the creator developers trust for professional UI components.
23 lines (22 loc) • 842 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { TemplateRef } from '@angular/core';
/**
* Contains meta information about a Scheduler view.
*/
export declare abstract class SchedulerView {
/**
* @hidden
*/
abstract template: TemplateRef<any>;
/**
* Sets the view title displayed by the Scheduler, for example, **Day View**.
*/
abstract title: string;
/**
* Sets the invariant name for this view, for example, `day`. If not set, uses the title.
*/
abstract name: string;
}