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
9 lines (8 loc) • 406 B
TypeScript
import { SchedulerColumnsProps, TimeBlock } from '../common';
/**
* Timebloks merger after applying offset (for output)
* @param offsetsBlocks - array of timeblocks with applied offset
* @param columns - used day of week count
* @returns ScheduleGroups output in UTC timezone
*/
export declare const outputMerger: (offsetsBlocks: TimeBlock[], columns: SchedulerColumnsProps[]) => TimeBlock[];