File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { getGitHubUser } from "./core/profile.js" ;
22import { getGitHubCommits } from "./core/commits.js" ;
3+ import { getGitHubLanguages } from "./core/languages.js" ;
4+ import { getGitHubRepos , getGitHubPinnedRepos } from "./core/repositories.js" ;
35import {
46 getGitHubContributions ,
57 getGitHubContributionTypesPerYear
68} from "./core/contributions.js" ;
79
8- import { GitHubProfile , GitHubCommit } from "./types/types.js" ;
10+ import {
11+ GitHubProfile ,
12+ GitHubCommit ,
13+ UserLangStat ,
14+ GitHubRepo
15+ } from "./types/types.js" ;
916
1017export {
1118 getGitHubUser ,
1219 getGitHubCommits ,
1320 getGitHubContributions ,
14- getGitHubContributionTypesPerYear
21+ getGitHubContributionTypesPerYear ,
22+ getGitHubLanguages ,
23+ getGitHubRepos ,
24+ getGitHubPinnedRepos
1525} ;
1626
17- export type { GitHubProfile , GitHubCommit } ;
27+ export type { GitHubProfile , GitHubCommit , UserLangStat , GitHubRepo } ;
1828
1929export default {
2030 getGitHubUser,
2131 getGitHubCommits,
22- getGitHubContributions
32+ getGitHubContributions,
33+ getGitHubContributionTypesPerYear,
34+ getGitHubLanguages,
35+ getGitHubRepos,
36+ getGitHubPinnedRepos
2337} ;
You can’t perform that action at this time.
0 commit comments