api/client/types/source.ts

10 lines
195 B
TypeScript
Raw Normal View History

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