@types/angular
Advanced tools
Comparing version 1.6.52 to 1.6.53
@@ -777,2 +777,3 @@ // Project: http://jquery.com/ | ||
* For key or mouse events, this property indicates the specific key or button that was pressed. | ||
* @deprecated Use `key` for KeyEvents or `button` for MouseEvents instead. | ||
* @see {@link https://api.jquery.com/event.which/} | ||
@@ -808,5 +809,8 @@ */ | ||
interface JQueryKeyEventObject extends JQueryInputEventObject { | ||
char: any; | ||
/** @deprecated */ | ||
char: string; | ||
/** @deprecated */ | ||
charCode: number; | ||
key: any; | ||
key: string; | ||
/** @deprecated */ | ||
keyCode: number; | ||
@@ -813,0 +817,0 @@ } |
{ | ||
"name": "@types/angular", | ||
"version": "1.6.52", | ||
"version": "1.6.53", | ||
"description": "TypeScript definitions for Angular JS", | ||
@@ -41,4 +41,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "36be883217ce4939243da5be0a26d583b8fbcf711741006ceabe6f25e5cc709a", | ||
"typesPublisherContentHash": "7e8029d673c5e4adc182324a12e7462edc5fc23dba6bb0f3464a00aa485e9e10", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 19 Dec 2018 13:41:25 GMT | ||
* Last updated: Tue, 25 Dec 2018 05:51:30 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: angular |
156596
2829