UNPKG

visiting-hours

Version:

An advanced, feature rich, optimised and tiny visiting-hours library.

9 lines (8 loc) 283 B
import { RegularHoursInterface } from './RegularHoursInterface'; import { HoursDayInterface } from './HoursDayInterface'; export interface VisitingHoursConfigInterface { live?: boolean; zone?: string; regular?: RegularHoursInterface; special?: HoursDayInterface[]; }