UNPKG

@hubs101/js-api-skd-client

Version:
6 lines (5 loc) 458 B
import { APIResponse } from "../../types/base"; 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<APIResponse>; export declare const _unblockEvent: (basePath: string, token: string, availabilityId: string) => Promise<APIResponse>;