mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
export type User = {
|
|
id: string;
|
|
name: string;
|
|
username: string;
|
|
isFollowing: boolean;
|
|
isFollowed: boolean;
|
|
};
|