27 lines
447 B
TypeScript
Executable File
27 lines
447 B
TypeScript
Executable File
export interface Member {
|
|
name: string
|
|
avatarPic?: string
|
|
title: string
|
|
company?: string
|
|
companyLink?: string
|
|
projects: Link[]
|
|
location: string | string[]
|
|
languages: string[]
|
|
website?: Link
|
|
socials: Socials
|
|
sponsor?: boolean | string
|
|
reposPersonal?: string[]
|
|
}
|
|
|
|
export interface Link {
|
|
label: string
|
|
url: string
|
|
}
|
|
|
|
export interface Socials {
|
|
github: string
|
|
twitter?: string
|
|
linkedin?: string
|
|
codepen?: string
|
|
}
|