ts-react-scheduler
Version:
Scheduler component based on TypeScript and ReactJS
8 lines (7 loc) • 306 B
TypeScript
import { FC } from 'react';
import './Scheduler.less';
import { ISchedulerProps } from '../interfaces/ISchedulerProps';
export declare const currentYear: number;
export declare const currentMonth: number;
export declare const currentDay: number;
export declare const Scheduler: FC<ISchedulerProps>;