⬅️ Back to Table of Contents
📄 contributors.ts
📊 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', |
|
|
|
|
| twitter: '_egoistlily', |
|
|
|
|
| bluesky: 'egoist.dev', |
|
|
|
|
| sponsors: true, |
|
|
|
|
| description: '', |
|
|
|
|
| packages: ['head'], |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.webfansplz, |
|
|
|
|
| name: 'webfansplz', |
|
|
|
|
| github: 'webfansplz', |
|
|
|
|
| twitter: 'webfansplz', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| functions: [ |
|
|
|
|
| 'useDateFormat', |
|
|
|
|
| 'useAsyncQueue', |
|
|
|
|
| ], |
|
|
|
|
description: 'FE Developer Love open source', |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.anteriovieira, |
|
|
|
|
| name: 'anteriovieira', |
|
|
|
|
| github: 'anteriovieira', |
|
|
|
|
| twitter: 'anteriovieira', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| description: '', |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars['cawa-93'], |
|
|
|
|
| name: 'Alex Kozack', |
|
|
|
|
| github: 'cawa-93', |
|
|
|
|
| twitter: 'alex_kozack', |
|
|
|
|
| bluesky: 'kozack.me', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| functions: ['useMediaControls'], |
|
|
|
|
| description: 'Open Source Contributor from Ukraine', |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.scottbedard, |
|
|
|
|
| name: 'Scott Bedard', |
|
|
|
|
| github: 'scottbedard', |
|
|
|
|
| bluesky: 'scottbedard.net', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| functions: [ |
|
|
|
|
| 'useTransition', |
|
|
|
|
| 'useDocumentVisibility', |
|
|
|
|
| 'useElementVisibility', |
|
|
|
|
| ], |
|
|
|
|
| description: '', |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.sibbng, |
|
|
|
|
| name: 'sibbng', |
|
|
|
|
| github: 'sibbng', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| description: '', |
|
|
|
|
| functions: [ |
|
|
|
|
| 'onClickOutside', |
|
|
|
|
| 'useStyleTag', |
|
|
|
|
| ], |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.okxiaoliang4, |
|
|
|
|
| name: 'Jelf', |
|
|
|
|
| github: 'okxiaoliang4', |
|
|
|
|
| twitter: 'okxiaoliang4', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| functions: [ |
|
|
|
|
| 'useElementByPoint', |
|
|
|
|
| 'useScreenSafeArea', |
|
|
|
|
| ], |
|
|
|
|
| description: '', |
|
|
|
|
| }, |
|
|
|
|
| { |
|
|
|
|
| avatar: contributorsAvatars.lstoeferle, |
|
|
|
|
| name: 'lstoeferle', |
|
|
|
|
| github: 'lstoeferle', |
|
|
|
|
| twitter: '54ku1', |
|
|
|
|
| sponsors: false, |
|
|
|
|
| functions: [ |
|
|
|
|
| 'useSwipe', |
|
|
|
|
| 'useUrlSearchParams', |
|
|
|
|
| ], |
|
|
|
|
| description: '', |
|
|
|
|
| }, |
|
|
|
|
| ]` |
✓ |
|
|
|
Functions
getAvatarUrl(name: string): string
Code
function getAvatarUrl(name: string) {
return `https://avatars.githubusercontent.com/${name}?v=4`
}
- Parameters:
name: string
- Return Type:
string
Interfaces
Contributor
Interface Code
export interface Contributor {
name: string
avatar: string
}
Properties
| Name |
Type |
Optional |
Description |
name |
string |
✗ |
|
avatar |
string |
✗ |
|
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 |
✗ |
|
name |
string |
✗ |
|
github |
string |
✗ |
|
twitter |
string |
✓ |
|
bluesky |
string |
✓ |
|
sponsors |
boolean |
✓ |
|
description |
string |
✗ |
|
packages |
string[] |
✓ |
|
functions |
string[] |
✓ |
|