9 lines
128 B
TypeScript
9 lines
128 B
TypeScript
|
namespace MastodonEntity {
|
||
|
export type Mention = {
|
||
|
id: string
|
||
|
username: string
|
||
|
url: string
|
||
|
acct: string
|
||
|
}
|
||
|
}
|