server/types/entities-2/source.ts
2024-04-14 00:53:21 -10:00

10 lines
203 B
TypeScript

import type { APIField } from "./field";
export interface APISource {
privacy: string | null;
sensitive: boolean | null;
language: string | null;
note: string;
fields: APIField[];
}