Remove invalid references

This commit is contained in:
Ryan Cavanaugh
2016-05-10 16:27:59 -07:00
parent 612c172c52
commit e105eabd48
290 changed files with 255 additions and 746 deletions

View File

@@ -3,8 +3,6 @@
// Definitions by: Mick Delaney <https://github.com/mickdelaney/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
var app = angular.module('testModule');
interface AppScope extends rx.angular.IRxScope {
@@ -13,7 +11,6 @@ interface AppScope extends rx.angular.IRxScope {
app.controller('Ctrl', ($scope: AppScope) => {
this.inputObservable = $scope.$toObservable('term')
.throttle(400)
.safeApply($scope, (results: any) => {
this.results = results;
});