react-weekly-table
Version:
React weekly scheduler <br/> By default build time ranges for a week, supports up to 31 days <br/> Can work with different timezones, data always return to UTC+0
37 lines (36 loc) • 820 B
TypeScript
import { SchedulerColumnsProps } from './types';
/**
* Default used columns descriptions
* [SchedulerColumnsProps]{@link SchedulerColumnsProps}
*/
export declare const schedulerColumns: SchedulerColumnsProps[];
/**
* Default used time rows descriptions
*/
export declare const schedulerRows: string[];
/**
* Describing time block moving direction
*/
export declare const DIR: {
TOP: boolean;
BOTTOM: boolean;
};
/**
* Describing time block actions
*/
export declare const ACTION: {
RESIZE_TOP: number;
RESIZE_BOT: number;
MOVE: number;
};
/**
* Describing which time was changes, using for custom time setter
*/
export declare const TIME: {
START: boolean;
END: boolean;
};
/**
* ms count per 1 day
*/
export declare const HOUR_24 = 86400000;