UNPKG

@adaptabletools/adaptable

Version:

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

12 lines (11 loc) 302 B
import { BaseContext } from '../../types'; /** * Options for managing Holidays and Working Days in AdapTable */ export interface CalendarOptions { /** * Holidays for current User * @defaultValue null */ holidays?: Date[] | ((baseContext: BaseContext) => Date[] | undefined); }