UNPKG

@remcostoeten/fync

Version:

Unified TypeScript library for 9 popular APIs with consistent functional architecture

34 lines 1.15 kB
/** * @remcostoeten/fync - Unified API Package * * A streamlined package providing consistent access to multiple APIs * through a unified functional architecture. */ // Core exports export * from "./core"; // Version export { version } from "./core"; // API exports export { GitHub } from "./github"; export { GitLab } from "./gitlab"; // OAuth exports export { GitHubOAuth, createGitHubOAuth, gitHubOAuth } from "./github/oauth"; export { GoogleOAuth, createGoogleOAuth, googleOAuth } from "./google-calendar/oauth"; // Type exports 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"; //# sourceMappingURL=index.js.map