mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
17 lines
328 B
TypeScript
17 lines
328 B
TypeScript
![]() |
import { OptionRow } from "../becca/entities/rows";
|
||
|
|
||
|
/**
|
||
|
* 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[]
|
||
|
}
|