Add 2 more settings from consts
This commit is contained in:
parent
05a7a1701e
commit
e51fcf296f
5 changed files with 34 additions and 22 deletions
|
|
@ -11,6 +11,8 @@ export interface SyncSettings {
|
|||
webSocketRetryIntervalMs: number;
|
||||
diffCacheSizeMB: number;
|
||||
enableTelemetry: boolean;
|
||||
networkRetryIntervalMs: number;
|
||||
minimumSaveIntervalMs: number;
|
||||
}
|
||||
|
||||
export const DEFAULT_SETTINGS: SyncSettings = {
|
||||
|
|
@ -23,7 +25,9 @@ export const DEFAULT_SETTINGS: SyncSettings = {
|
|||
ignorePatterns: [],
|
||||
webSocketRetryIntervalMs: 3500,
|
||||
diffCacheSizeMB: 4,
|
||||
enableTelemetry: false
|
||||
enableTelemetry: false,
|
||||
networkRetryIntervalMs: 1000,
|
||||
minimumSaveIntervalMs: 1000
|
||||
};
|
||||
|
||||
export class Settings {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue