mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
[Typescript] Convert tools page to TS (#344)
* Convert controller to TS. * Remove $scope and move methods into class. * Convert tools to component.
This commit is contained in:
committed by
Kyle Spearrin
parent
555648ede4
commit
a66e32590b
7
src/popup/app/tools/tools.module.ts
Normal file
7
src/popup/app/tools/tools.module.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import * as angular from 'angular';
|
||||
import { ToolsComponent } from './tools.component';
|
||||
|
||||
export default angular
|
||||
.module('bit.tools', ['ngAnimate', 'ngclipboard', 'toastr', 'oitozero.ngSweetAlert'])
|
||||
.component('tools', ToolsComponent)
|
||||
.name;
|
||||
Reference in New Issue
Block a user