mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
10 lines
174 B
TypeScript
10 lines
174 B
TypeScript
import { Field } from "./field";
|
|
|
|
export interface Source {
|
|
privacy: string | null;
|
|
sensitive: boolean | null;
|
|
language: string | null;
|
|
note: string;
|
|
fields: Field[];
|
|
}
|