mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 03:56:44 -06:00
12 lines
455 B
TypeScript
12 lines
455 B
TypeScript
import { IUser } from '../api/models/user';
|
|
|
|
/**
|
|
* ユーザーを表す文字列を取得します。
|
|
* @param user ユーザー
|
|
*/
|
|
export default function(user: IUser): string {
|
|
return `${user.name} (@${user.username})\n` +
|
|
`${user.posts_count}投稿、${user.following_count}フォロー、${user.followers_count}フォロワー\n` +
|
|
`場所: ${user.profile.location}、誕生日: ${user.profile.birthday}\n` +
|
|
`「${user.description}」`;
|
|
}
|