UNPKG

@remcostoeten/fync

Version:

Unified TypeScript library for 9 popular APIs with consistent functional architecture

30 lines 1.12 kB
/** * @remcostoeten/fync - Unified API Package * * A streamlined package providing consistent access to multiple APIs * through a unified functional architecture. */ export * from "./core"; export { version } from "./core"; export { GitHub } from "./github"; export { GitLab } from "./gitlab"; export { GitHubOAuth, createGitHubOAuth, gitHubOAuth } from "./github/oauth"; export { GoogleOAuth, createGoogleOAuth, googleOAuth } from "./google-calendar/oauth"; export * from "./github/types"; export * from "./gitlab/types"; export { NPM } from "./npm"; export * from "./npm/types"; export { Spotify } from "./spotify"; export * from "./spotify/types"; export { Vercel } from "./vercel"; export * from "./vercel/types"; export { GoogleCalendar } from "./google-calendar"; export * from "./google-calendar/types"; export { GoogleDrive } from "./google-drive"; export * from "./google-drive/types"; export { Discord } from "./discord"; export * from "./discord/types"; export { Notion } from "./notion"; export * from "./notion/types"; export type { TNotionModule } from "./notion"; //# sourceMappingURL=index.d.ts.map