server/types/mastodon/source.ts

10 lines
192 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
import type { Field } from "./field";
2023-09-11 05:31:08 +02:00
2024-04-14 12:53:21 +02:00
export type Source = {
2024-04-07 07:30:49 +02:00
privacy: string | null;
sensitive: boolean | null;
language: string | null;
note: string;
fields: Field[];
2024-04-14 12:53:21 +02:00
};