13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
export interface SyncSettings {
|
|
remoteUri: string;
|
|
token: string;
|
|
fullScanIntervalInSeconds: number;
|
|
fullScanEnabled: boolean;
|
|
}
|
|
|
|
export const DEFAULT_SETTINGS: SyncSettings = {
|
|
remoteUri: "",
|
|
token: "",
|
|
fullScanIntervalInSeconds: 60,
|
|
fullScanEnabled: true,
|
|
};
|