server/types/entities/field.ts
Jesse Wierzbinski 436a79d99f
Initial commit
2023-09-10 17:31:08 -10:00

6 lines
85 B
TypeScript

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