Skip to content

Commit

Permalink
interface-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Avdhesh-Varshney committed Oct 17, 2024
1 parent b4c91c3 commit e18d117
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/app/contributors/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,24 @@ import Link from 'next/link';
import { useState, useEffect } from 'react';

interface Contributor {
html_url: string;
avatar_url: string;
login: string;
id: number;
node_id: string;
avatar_url: string;
gravatar_id: string;
url: string;
html_url: string;
followers_url: string;
following_url: string;
gists_url: string;
starred_url: string;
subscriptions_url: string;
organizations_url: string;
repos_url: string;
events_url: string;
received_events_url: string;
type: string;
site_admin: boolean;
contributions: number;
}

Expand Down

0 comments on commit e18d117

Please sign in to comment.