UNPKG

event-app-api

Version:

Package for easy access to Event App API

5 lines (4 loc) 404 B
import { CalendarEvent } from "./types"; export declare const _fetchCalendarEvents: (basePath: string, token: string) => Promise<CalendarEvent[]>; export declare const _blockEvent: (basePath: string, token: string, event: string, startDate: string, endDate: string) => Promise<Response>; export declare const _unblockEvent: (basePath: string, token: string, availabilityId: string) => Promise<Response>;