mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-15 05:44:51 +00:00
7 lines
123 B
TypeScript
7 lines
123 B
TypeScript
namespace MastodonEntity {
|
|
export type Field = {
|
|
name: string
|
|
value: string
|
|
verified_at: string | null
|
|
}
|
|
}
|