elk/composables/masto.ts

6 wiersze
140 B
TypeScript
Czysty Zwykły widok Historia

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