renaming to angular.throttle

This commit is contained in:
Stefan Steinhart
2015-07-03 18:57:21 +02:00
parent eb2d3502ca
commit bfefac3091
2 changed files with 2 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
// Type definitions for angular.throttle
// Project: https://github.com/BaggersIO/angular.throttle
// Definitions by: Stefan Steinhart <https://github.com/reppners>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path='../angularjs/angular.d.ts' />
declare module angular {
interface IAngularStatic {
throttle:( fn:Function, throttle:number, options?:{leading?:boolean; trailing?:boolean;} ) => Function;
}
}