@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.
21 lines (20 loc) • 872 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';
/**
 * An object which contains the options for the [`SchedulerComponent.editEvent`]({% slug api_scheduler_schedulercomponent %}#toc-editevent).
 */
export interface EditEventArgs {
    /**
     * The [`FormGroup`](https://angular.io/docs/ts/latest/api/forms/index/FormGroup-class.html)
     * that describes the edit form.
     */
    group?: FormGroup;
    /**
     * The selected edit mode of the event.
     */
    mode?: EditMode;
}