UNPKG

@remcostoeten/fync

Version:

A unified TypeScript library for easy access to popular APIs (GitHub, Spotify, GitLab, etc.)

8 lines 376 B
import { type TBaseConfig, type TChainableClient } from "../../core/chainable"; type TCalendarClientConfig = TBaseConfig & { accessToken: string; }; declare function createCalendarClient(config: TCalendarClientConfig): TChainableClient; export { createCalendarClient }; export type { TCalendarClientConfig, TChainableClient }; //# sourceMappingURL=calendar-client.d.ts.map