2024-06-07 03:51:33 +02:00
|
|
|
import type { Field } from "./field";
|
|
|
|
|
|
|
|
|
|
export type Source = {
|
|
|
|
|
privacy: string | null;
|
|
|
|
|
sensitive: boolean | null;
|
|
|
|
|
language: string | null;
|
|
|
|
|
note: string;
|
2024-06-20 00:21:34 +02:00
|
|
|
fields: Field[];
|
2024-06-07 03:51:33 +02:00
|
|
|
};
|