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

9 lines
128 B
TypeScript
Raw Normal View History

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