mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-02 07:06:44 -06:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
|
export default (mention: {
|
||
|
uri: string;
|
||
|
username: string;
|
||
|
host: string;
|
||
|
}) => ({
|
||
|
type: 'Mention',
|
||
|
href: mention.uri,
|
||
|
name: `@${mention.username}@${mention.host}`
|
||
|
});
|