mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 04:59:04 +01:00
18 lines
338 B
TypeScript
18 lines
338 B
TypeScript
import type { 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[];
|
|
}
|