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}`
|
||
|
});
|