egirlskey/packages/megalodon/src/mastodon/entities/mention.ts

9 lines
128 B
TypeScript
Raw Normal View History

2023-09-23 23:44:53 +00:00
namespace MastodonEntity {
export type Mention = {
id: string
username: string
url: string
acct: string
}
}