@aldabil/react-scheduler
Version:
React scheduler component based on Material-UI & date-fns
12 lines (11 loc) • 413 B
TypeScript
import { SelectedRange } from '../store/types';
import { FieldInputProps, InputTypes, ProcessedEvent } from '../types';
export type StateItem = {
value: any;
validity: boolean;
type: InputTypes;
config?: FieldInputProps;
};
export type StateEvent = (ProcessedEvent & SelectedRange) | Record<string, any>;
declare const Editor: () => import("react/jsx-runtime").JSX.Element;
export default Editor;