trilium/src/services/api-interface.ts
2024-07-24 20:20:20 +03:00

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[]
}