egirlskey/packages/megalodon/src/mastodon/entities/mention.ts
2023-09-25 01:49:57 +02:00

8 lines
128 B
TypeScript

namespace MastodonEntity {
export type Mention = {
id: string
username: string
url: string
acct: string
}
}