@c0dez/github-repo-fetcher
Version:
🔍 A lightweight GitHub profile analyzer that fetches repositories, READMEs, and comprehensive user statistics with TypeScript support. Perfect for building GitHub analytics tools and portfolio sites.
26 lines (25 loc) • 631 B
TypeScript
export declare const mockRepo: {
name: string;
full_name: string;
description: string;
html_url: string;
stargazers_count: number;
};
export declare const mockUserData: {
login: string;
name: string;
bio: string;
public_repos: number;
followers: number;
following: number;
location: string;
blog: string;
twitter_username: string;
created_at: string;
updated_at: string;
};
export declare const mockLanguages: {
JavaScript: number;
TypeScript: number;
};
export declare const mockReadme = "# Test Repository\nThis is a test readme.";