1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 19:53:43 +00:00

Convert global module to TypeScript. (#397)

This commit is contained in:
Oscar Hinton
2017-11-25 16:04:31 +01:00
committed by Kyle Spearrin
parent f5ccc22076
commit 7c525d3f3a
11 changed files with 83 additions and 77 deletions

View File

@@ -0,0 +1,5 @@
export class BaseController implements ng.IController {
constructor($scope: any, i18nService: any) {
$scope.i18n = i18nService;
}
}