6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
|
import type { Account } from 'masto'
|
||
|
|
||
|
export function getDisplayName(account: Account) {
|
||
|
return account.displayName || account.username
|
||
|
}
|