server/types/mastodon/field.ts

7 lines
127 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Field = {
name: string;
value: string;
verified_at?: string | null;
verified?: boolean | false;
};