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

8 lines
111 B
TypeScript
Raw Normal View History

namespace Entity {
2023-07-14 03:32:23 +02:00
export type Field = {
name: string;
value: string;
verified_at: string | null;
};
}