UNPKG

@uplink-protocol/calendar-controller

Version:

Flexible calendar API supporting both calendar and date-picker integrations for any JavaScript framework or library

22 lines (21 loc) 725 B
/** * @uplink-protocol/calendar-controller * * A powerful calendar and date picker controller for building date selection UI components. * This module is part of the Odyssey Uplink Protocol. * * @packageDocumentation */ import { CalendarControllerClass } from './controller'; import { CalendarOptions } from './interfaces'; /** * Factory function to create a calendar controller * @param options Calendar configuration options * @returns A new CalendarControllerClass instance */ export declare function CalendarController(options?: CalendarOptions): CalendarControllerClass; export * from "./controller"; export * from "./interfaces"; export * from "./types"; export * from "./services"; export * from "./utils";