mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
17 lines
331 B
TypeScript
17 lines
331 B
TypeScript
import { OptionRow } from "../becca/entities/rows.js";
|
|
|
|
/**
|
|
* Response for /api/setup/status.
|
|
*/
|
|
export interface SetupStatusResponse {
|
|
syncVersion: number;
|
|
schemaExists: boolean;
|
|
}
|
|
|
|
/**
|
|
* Response for /api/setup/sync-seed.
|
|
*/
|
|
export interface SetupSyncSeedResponse {
|
|
syncVersion: number;
|
|
options: OptionRow[]
|
|
} |