@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.
23 lines (22 loc) • 535 B
TypeScript
import { Schedule } from '../base/schedule';
import { VerticalView } from './vertical-view';
/**
* work week view
*/
export declare class WorkWeek extends VerticalView {
viewClass: string;
/**
* Constructor for work week view
*
* @param {Schedule} parent Accepts the schedule instance
*/
constructor(parent: Schedule);
startDate(): Date;
endDate(): Date;
/**
* Get module name.
*
* @returns {string} Returns the module name.
*/
protected getModuleName(): string;
}