server/types/entities/source.ts

10 lines
203 B
TypeScript
Raw Normal View History

import type { APIField } from "./field";
2023-09-11 05:31:08 +02:00
2023-09-12 22:48:10 +02:00
export interface APISource {
2024-04-07 07:30:49 +02:00
privacy: string | null;
sensitive: boolean | null;
language: string | null;
note: string;
fields: APIField[];
2023-09-11 05:46:20 +02:00
}