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