mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-07 09:55:46 +00:00
8 lines
120 B
TypeScript
8 lines
120 B
TypeScript
namespace Entity {
|
|
export type Mention = {
|
|
id: string
|
|
username: string
|
|
url: string
|
|
acct: string
|
|
}
|
|
}
|