frontend/types/mastodon/source.ts

10 lines
197 B
TypeScript

import type { Field } from "./field";
export type Source = {
privacy: string | null;
sensitive: boolean | null;
language: string | null;
note: string;
fields: Array<Field>;
};