| 123456789101112131415161718192021 |
- export type SearchResult = {
- total_count: number;
- imcomplete_results: boolean;
- items: SearchResultItem[];
- };
- export type SearchResultItem = {
- id: number;
- name: string;
- owner: {
- login: string;
- html_url: string;
- avatar_url: string;
- };
- fullName: string;
- htmlUrl: string;
- description: string;
- topics: string[];
- homepage: string;
- stargazersCount: number;
- };
|