UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 416 B
import { ApiBase } from './ApiBase'; import { CalendarApi } from '../CalendarApi'; export declare class CalendarApiImpl extends ApiBase implements CalendarApi { getNextWorkingDay(): Date; getPreviousWorkingDay(): Date; isWorkingDay(dateToCheck: Date): boolean; isHoliday(dateToCheck: Date): boolean; isSameDay(firstDateToCheck: Date, secondDateToCheck: Date): boolean; private getHolidays; }