/**
 * Re-export of types and parse helpers, so consumers can do
 *
 *     import { RepoStats, parseRepoUrl } from 'repo-stats';
 *
 * without caring which internal file each symbol lives in.
 */

export type {
  ParsedRepo,
  RepoStats,
  IssueSummary,
  PullSummary,
  ReleaseSummary,
  ContributorSummary,
} from './types.js';
export { parseRepoUrl, normalizeRepo } from './parse.js';
