@syncfusion/ej2-schedule
Version:
Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support.
15 lines (14 loc) • 363 B
TypeScript
import { Schedule } from '../base/schedule';
/**
* Work cell interactions
*/
export declare class WorkCellInteraction {
private parent;
constructor(parent: Schedule);
cellMouseDown(e: Event): void;
cellClick(e: Event & MouseEvent): void;
cellDblClick(e: Event): void;
private onHover;
private isPreventAction;
destroy(): void;
}