Skip to content

⬅️ Back to Table of Contents

📄 types.ts

📊 Analysis Summary

Metric Count
📐 Interfaces 1

📚 Table of Contents

🛠️ File Location:

📂 packages/website/src/components/FinancialContributors/types.ts

Interfaces

SponsorData

Interface Code
export interface SponsorData {
  id: string;
  image: string;
  name: string;
  totalDonations: number;
  website: string;
}

Properties

Name Type Optional Description
id string
image string
name string
totalDonations number
website string