⬅️ Back to Table of Contents
📄 contributors
📊 Analysis Summary
| Metric |
Count |
| 🔧 Functions |
1 |
| 📦 Imports |
1 |
| 📊 Variables & Constants |
2 |
| 📐 Interfaces |
2 |
📚 Table of Contents
🛠️ File Location:
📂 packages/contributors.ts
📦 Imports
| Name |
Source |
contributorsGenerated |
./contributors.json |
Variables & Constants
| Name |
Type |
Kind |
Value |
Exported |
contributorsAvatars |
Record<string, string> |
const |
{} |
✗ |
emeriti |
TeamMember[] |
const |
[ { avatar: contributorsAvatars.egoist, name: 'EGOIST', github: 'egoist', twi... |
✓ |
Functions
getAvatarUrl(name: string): string
Parameters:
Returns: string
Code
function getAvatarUrl(name: string) {
return `https://avatars.githubusercontent.com/${name}?v=4`
}
Interfaces
Contributor
Interface Code
export interface Contributor {
name: string
avatar: string
}
Properties
| Name |
Type |
Optional |
Description |
name |
string |
✗ |
not shown |
avatar |
string |
✗ |
not shown |
TeamMember
Interface Code
export interface TeamMember {
avatar: string
name: string
github: string
twitter?: string
bluesky?: string
sponsors?: boolean
description: string
packages?: string[]
functions?: string[]
}
Properties
| Name |
Type |
Optional |
Description |
avatar |
string |
✗ |
not shown |
name |
string |
✗ |
not shown |
github |
string |
✗ |
not shown |
twitter |
string |
✓ |
not shown |
bluesky |
string |
✓ |
not shown |
sponsors |
boolean |
✓ |
not shown |
description |
string |
✗ |
not shown |
packages |
string[] |
✓ |
not shown |
functions |
string[] |
✓ |
not shown |
Generated by Syntax Scribe