blob: 7f4b27e2c5e9bccb33c156c6640917704c79282b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
const TURBO_TEAM: Record<string, AuthorDetails> = {
HsiangNianian: {
name: "简律纯",
twitterUsername: "HsiangNianian",
picture: "/images/people/HsiangNianian.jpg",
},
};
export type Author = keyof typeof TURBO_TEAM;
export type AuthorDetails = {
name: string;
twitterUsername?: string;
picture: string;
};
export default TURBO_TEAM;
|