Add unit to setting
This commit is contained in:
parent
faef0978a7
commit
098540323e
3 changed files with 5 additions and 5 deletions
|
|
@ -1,13 +1,13 @@
|
|||
export interface SyncSettings {
|
||||
remoteUri: string;
|
||||
token: string;
|
||||
fetchChangesUpdateInterval: number;
|
||||
fetchChangesUpdateIntervalMs: number;
|
||||
isSyncEnabled: boolean;
|
||||
}
|
||||
|
||||
export const DEFAULT_SETTINGS: SyncSettings = {
|
||||
remoteUri: "",
|
||||
token: "",
|
||||
fetchChangesUpdateInterval: 1,
|
||||
fetchChangesUpdateIntervalMs: 1000,
|
||||
isSyncEnabled: true,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue