Notes/src/services/api-interface.ts
2025-01-09 18:36:24 +02:00

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