barkey/packages/megalodon/src/mastodon/entities/field.ts
2023-09-25 01:49:57 +02:00

7 lines
123 B
TypeScript

namespace MastodonEntity {
export type Field = {
name: string
value: string
verified_at: string | null
}
}