8 lines
127 B
TypeScript
8 lines
127 B
TypeScript
namespace PleromaEntity {
|
|
export type Mention = {
|
|
id: string
|
|
username: string
|
|
url: string
|
|
acct: string
|
|
}
|
|
}
|