UNPKG

@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

24 lines (23 loc) 818 B
import { ComplexBase } from '@syncfusion/ej2-react-base'; import { ResourcesModel } from '@syncfusion/ej2-schedule'; /** * `ResourcesDirective` represent a resource of the react Schedule. * It must be contained in a Schedule component(`SchduleComponent`). * ```tsx * <ScheduleComponent> * <ResourcesDirective> * <ResourceDirective field='RoomId' name='Rooms'></ResourceDirective> * <ResourceDirective field='OwnerId' name='Owners'></ResourceDirective> * <ResourcesDirective> * </ScheduleComponent> * ``` */ export declare class ResourceDirective extends ComplexBase<ResourcesModel & { children?: React.ReactNode; }, ResourcesModel> { static moduleName: string; } export declare class ResourcesDirective extends ComplexBase<{}, {}> { static propertyName: string; static moduleName: string; }