import type { OptionRow } from "@triliumnext/commons"; /** * 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[]; }