We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f53a91d commit 9854649Copy full SHA for 9854649
1 file changed
src/index.ts
@@ -1,12 +1,18 @@
1
import { getGitHubUser } from "./core/profile.js";
2
import { getGitHubCommits } from "./core/commits.js";
3
-import { getGitHubContributions } from "./core/contributions.js";
+import {
4
+ getGitHubContributions,
5
+ getGitHubContributionTypesPerYear
6
+} from "./core/contributions.js";
7
8
import { GitHubProfile, GitHubCommit } from "./types/types.js";
9
-export { getGitHubUser };
-export { getGitHubCommits };
-export { getGitHubContributions };
10
+export {
11
+ getGitHubUser,
12
+ getGitHubCommits,
13
14
15
+};
16
17
export type { GitHubProfile, GitHubCommit };
18
0 commit comments