server/types/entities/source.ts
2023-11-22 18:10:37 -10:00

10 lines
188 B
TypeScript

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