Refactor & update API

This commit is contained in:
Andras Schmelczer 2024-12-10 22:25:00 +00:00
parent 5f1075879f
commit 3065edba37
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
6 changed files with 42 additions and 33 deletions

View file

@ -0,0 +1,13 @@
export interface SyncSettings {
remoteUri: string;
token: string;
fullScanIntervalInSeconds: number;
fullScanEnabled: boolean;
}
export const DEFAULT_SETTINGS: SyncSettings = {
remoteUri: "",
token: "",
fullScanIntervalInSeconds: 60,
fullScanEnabled: true,
};