mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-07 05:26:57 +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
|
|
}
|
|
}
|