api/client/types/source.ts
2024-06-06 15:51:33 -10:00

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>;
};