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