1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-18 08:38:52 +09:00
misskey/src/remote/activitypub/renderer/mention.ts

10 lines
172 B
TypeScript
Raw Normal View History

2018-06-13 05:11:55 +09:00
export default (mention: {
uri: string;
username: string;
host: string;
}) => ({
type: 'Mention',
href: mention.uri,
name: `@${mention.username}@${mention.host}`
});