Notes/src/services/api-interface.ts

17 lines
331 B
TypeScript
Raw Normal View History

import { OptionRow } from "../becca/entities/rows.js";
2024-04-03 23:18:39 +03:00
/**
* 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[]
}