server/types/entities/field.ts

6 lines
99 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APIField {
2024-04-07 07:30:49 +02:00
name: string;
value: string;
verified_at: string | null;
2023-09-11 05:46:20 +02:00
}