mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-10 03:14:51 +00:00
7 lines
116 B
TypeScript
7 lines
116 B
TypeScript
namespace Entity {
|
|
export type Field = {
|
|
name: string
|
|
value: string
|
|
verified_at?: string | null
|
|
}
|
|
}
|