@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
16 lines (15 loc) • 492 B
TypeScript
export type KendoSchedulerViewProps = {
view?: "day" | "week" | "month" | "agenda" | "timeline" | "year";
};
export declare const SchedulerView: {
(props: KendoSchedulerViewProps & ((React.HTMLAttributes<HTMLDivElement> & {
as: "div";
}) | (React.HTMLAttributes<HTMLTableElement> & {
as: "table";
}))): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {};
};
export default SchedulerView;