@syncfusion/ej2-react-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. for React
27 lines (26 loc) • 940 B
TypeScript
import { ComplexBase } from '@syncfusion/ej2-react-base';
import { HeaderRowsModel } from '@syncfusion/ej2-schedule';
export interface HeaderRowsDirTypecast {
template?: string | Function | any;
}
/**
* `HeaderRowsDirective` represent a header rows of the react Schedule.
* It must be contained in a Schedule component(`SchduleComponent`).
* ```tsx
* <ScheduleComponent>
* <HeaderRowsDirective>
* <HeaderRowDirective option='Week'></HeaderRowDirective>
* <HeaderRowDirective option='Date'></HeaderRowDirective>
* <HeaderRowsDirective>
* </ScheduleComponent>
* ```
*/
export declare class HeaderRowDirective extends ComplexBase<HeaderRowsModel | HeaderRowsDirTypecast & {
children?: React.ReactNode;
}, HeaderRowsModel | HeaderRowsDirTypecast> {
static moduleName: string;
}
export declare class HeaderRowsDirective extends ComplexBase<{}, {}> {
static propertyName: string;
static moduleName: string;
}