1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00
Files
browser/src/popup/app/global/base.controller.ts
2017-11-25 10:04:31 -05:00

6 lines
151 B
TypeScript

export class BaseController implements ng.IController {
constructor($scope: any, i18nService: any) {
$scope.i18n = i18nService;
}
}