mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
10 lines
188 B
TypeScript
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[];
|
|
}
|