api/client/types/source.ts
2024-06-19 12:21:34 -10:00

10 lines
192 B
TypeScript

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