1
0
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:
Oscar Hinton
2017-11-02 13:02:14 +01:00
committed by Kyle Spearrin
parent 555648ede4
commit a66e32590b
8 changed files with 81 additions and 65 deletions

View 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;