@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.
20 lines (19 loc) • 862 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 { FormGroup } from '@angular/forms';
import { EditMode } from '../types';
/**
* Defines the options for the [`editEvent`](slug:api_scheduler_schedulercomponent#editevent) method of the Scheduler.
*/
export interface EditEventArgs {
/**
* Provides the [`FormGroup`](https://angular.io/docs/ts/latest/api/forms/index/FormGroup-class.html) that describes the edit form.
*/
group?: FormGroup;
/**
* Specifies the selected edit mode of the event.
*/
mode?: EditMode;
}