hippofish/packages/megalodon/src/entities/field.ts

8 lines
115 B
TypeScript
Raw Normal View History

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