1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

added typings to settings components

This commit is contained in:
Kyle Spearrin
2018-01-11 14:29:55 -05:00
parent 2f5a1f470a
commit 35a20c775c
9 changed files with 38 additions and 26 deletions

View File

@@ -1,11 +1,14 @@
import * as template from './sync.component.html';
import { SyncService } from 'jslib/abstractions/sync.service';
export class SyncController {
i18n: any;
lastSync = '--';
loading = false;
constructor(private syncService: any, private toastr: any, private $analytics: any, private i18nService: any) {
constructor(private syncService: SyncService, private toastr: any, private $analytics: any,
private i18nService: any) {
this.i18n = i18nService;
this.setLastSync();
}