Skip to content

Commit 9854649

Browse files
committed
update: add exports and imports
1 parent f53a91d commit 9854649

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

src/index.ts

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
import { getGitHubUser } from "./core/profile.js";
22
import { getGitHubCommits } from "./core/commits.js";
3-
import { getGitHubContributions } from "./core/contributions.js";
3+
import {
4+
getGitHubContributions,
5+
getGitHubContributionTypesPerYear
6+
} from "./core/contributions.js";
47

58
import { GitHubProfile, GitHubCommit } from "./types/types.js";
69

7-
export { getGitHubUser };
8-
export { getGitHubCommits };
9-
export { getGitHubContributions };
10+
export {
11+
getGitHubUser,
12+
getGitHubCommits,
13+
getGitHubContributions,
14+
getGitHubContributionTypesPerYear
15+
};
1016

1117
export type { GitHubProfile, GitHubCommit };
1218

0 commit comments

Comments
 (0)