mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
Misc jslib cleanups (#146)
Fixed on import parameter type on login.component and added a deprecation warning to the index.ts in abstractions
This commit is contained in:
parent
7c3a9d61e6
commit
420393700b
@ -1,3 +1,4 @@
|
|||||||
|
// Using index.ts is deprecated, please do not extend
|
||||||
export { ApiService } from './api.service';
|
export { ApiService } from './api.service';
|
||||||
export { AppIdService } from './appId.service';
|
export { AppIdService } from './appId.service';
|
||||||
export { AuditService } from './audit.service';
|
export { AuditService } from './audit.service';
|
||||||
|
@ -13,6 +13,7 @@ import { EnvironmentService } from '../../abstractions/environment.service';
|
|||||||
import { I18nService } from '../../abstractions/i18n.service';
|
import { I18nService } from '../../abstractions/i18n.service';
|
||||||
import { PasswordGenerationService } from '../../abstractions/passwordGeneration.service';
|
import { PasswordGenerationService } from '../../abstractions/passwordGeneration.service';
|
||||||
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
|
import { PlatformUtilsService } from '../../abstractions/platformUtils.service';
|
||||||
|
import { StateService } from '../../abstractions/state.service';
|
||||||
import { StorageService } from '../../abstractions/storage.service';
|
import { StorageService } from '../../abstractions/storage.service';
|
||||||
|
|
||||||
import { ConstantsService } from '../../services/constants.service';
|
import { ConstantsService } from '../../services/constants.service';
|
||||||
@ -40,7 +41,7 @@ export class LoginComponent implements OnInit {
|
|||||||
|
|
||||||
constructor(protected authService: AuthService, protected router: Router,
|
constructor(protected authService: AuthService, protected router: Router,
|
||||||
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,
|
protected platformUtilsService: PlatformUtilsService, protected i18nService: I18nService,
|
||||||
protected stateService: StorageService, protected environmentService: EnvironmentService,
|
protected stateService: StateService, protected environmentService: EnvironmentService,
|
||||||
protected passwordGenerationService: PasswordGenerationService,
|
protected passwordGenerationService: PasswordGenerationService,
|
||||||
protected cryptoFunctionService: CryptoFunctionService, private storageService: StorageService) { }
|
protected cryptoFunctionService: CryptoFunctionService, private storageService: StorageService) { }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user