UNPKG

@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.

25 lines (24 loc) 907 B
/**----------------------------------------------------------------------------------------- * 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'; /** * An abstract class which contains meta information about a Scheduler view. */ export declare abstract class SchedulerView { /** * @hidden */ abstract template: TemplateRef<any>; /** * The view title that will be displayed by the Scheduler. * For example, **Day View**. */ abstract title: string; /** * The invariant name for this view. For example, `day`. * If not set, the name will be the same as the title. */ abstract name: string; }