Commit Graph
3917 Commits
Author SHA1 Message Date
Bart van der Schoor 83f6f736fd set to private
😰
2014-02-18 22:22:24 +01:00
Masahiro Wakame df63723fae Merge pull request #1706 from Dashue/FixGoogleMapsStreetViewMadness
Sorted out issue with StreetView being of the wrong type and added missing StreetViewControl
2014-02-18 12:29:31 +09:00
Masahiro Wakame 52295d4331 Merge pull request #1705 from Bartvds/def/underscore.string
added module declaration to underscore.string.d.ts
2014-02-18 12:21:24 +09:00
Masahiro Wakame b1ed4c9c28 Merge pull request #1704 from znation/master
Add module declaration to bootstrap.d.ts
2014-02-18 12:20:48 +09:00
Masahiro Wakame b3af6100bd Merge pull request #1702 from v3rm0n/socketio-client
socket.io nodejs client
2014-02-18 12:19:47 +09:00
Masahiro Wakame 297787d88b Merge pull request #1700 from Jaddream/master
add missing Express function basicAuth
2014-02-18 12:02:34 +09:00
Masahiro Wakame 3357502018 Merge pull request #1699 from timbow574521/work
Add getValue in DataTable in google.visualization.d.ts.
2014-02-18 11:59:38 +09:00
Masahiro Wakame f07e42f34f Merge pull request #1697 from michelsalib/master
Add more flexibility sugar.js calls
2014-02-18 11:56:45 +09:00
Masahiro Wakame 9c28ca6c4e Merge pull request #1695 from andrefarzat/patch-1
Fixing Set interface method from 'Add' to 'add'
2014-02-18 11:52:52 +09:00
Masahiro Wakame 3cbcfa2b2a Merge pull request #1694 from ZombieHunter/dot
Added definitions for doT (https://github.com/olado/doT)
2014-02-18 11:51:18 +09:00
Masahiro Wakame 78ebce5201 Merge pull request #1690 from sventschui/master
Improvements to marionette type definition
2014-02-18 11:45:46 +09:00
Masahiro Wakame 859d88a644 Merge pull request #1687 from michelsalib/angular-animate
Adding angular $animate definition
2014-02-18 11:39:14 +09:00
Masahiro Wakame d16b20f673 Merge pull request #1686 from mapsjs/master
Update to latest mapsjs definition file
2014-02-18 11:37:07 +09:00
Masahiro Wakame cd629f2dd6 Merge pull request #1680 from thSoft/patch-1
Preliminary version of AngularFire definition
2014-02-18 11:22:17 +09:00
Johan Nilsson acf9de177a StreetView : bool => StreetViewControl:bool
Added StreetView: StreetViewPanorama
2014-02-17 21:59:39 -04:00
Bart van der Schoor e509a3dd61 added module declaration to underscore.string.d.ts 2014-02-18 02:09:23 +01:00
Zach Nation 0db96af999 Add module declaration to bootstrap so it can be required as an AMD module 2014-02-17 14:07:20 -08:00
Basarat Ali Syed 2aff984fa8 Merge pull request #1701 from scottmcarthur/master
Added $promise & $resolved properties to ngResource.$resource & fixed spelling issue in angular.d.ts
2014-02-17 21:57:45 +11:00
Maido Käära 511cde8b91 Fixed test 2014-02-16 15:21:15 +00:00
Maido Käära d20a2330b8 Added newlines to the end of the files 2014-02-16 13:53:26 +00:00
Maido Käära 8265a17569 Type definitions for server side nodejs socket.io client. 2014-02-16 13:51:13 +00:00
Dénes Harmath 4238c803af Fix compile errors 2014-02-15 23:53:59 +01:00
Dénes Harmath f300bab557 Add header & tests 2014-02-15 21:54:35 +01:00
Scott McArthur 4d64913cdb angular.d.ts Annotated spelt incorrectly
Fixed spelling mistake in parameter names. Changed all occurrences of `Annotaded` to `Annotated`
2014-02-15 20:37:05 +00:00
scottmcarthur 1195fc6b5e Added $promise & $resolved properties
[ngResource.$resource](http://docs.angularjs.org/api/ngResource.$resource) defines a `$promise` property and a `$resolve` property on the Resource.
2014-02-15 09:06:02 +00:00
John Reilly 654d7e89d0 Merge pull request #1698 from johnnyreilly/master
jQuery: trigger now JSDoc'd and typings
2014-02-14 18:09:53 +00:00
vagrant 18c992059d add missing export function basicAuth(callback: (user: string, pass: string) => boolean, realm?: string): Handler; 2014-02-14 16:52:45 +00:00
John Reilly 4c2d50af48 jQuery: uncommented tests
realised they could be used as long as param1 and param2 made optional
2014-02-14 16:48:11 +00:00
timbow574521 fede925bfe Add getValue in DataTable in google.visualization.d.ts. 2014-02-14 11:43:13 -05:00
John Reilly 122ff1fb4c jQuery: trigger now JSDoc'd and typings
brought in line with documentation.  Also added test suite.
2014-02-14 16:36:27 +00:00
Michel Salib 68ebedc9b7 Add more flexibility sugar.js calls
Add some optional parameters ad return types.
2014-02-14 15:42:11 +01:00
André Farzat 72997bd719 Fixing Set interface method from 'Add' to 'add' 2014-02-13 17:43:48 -02:00
Marc-André Bühler 7699097b96 Added definitions for doT (https://github.com/olado/doT) 2014-02-13 16:47:29 +01:00
John Reilly dfa8d86385 Merge pull request #1692 from scottmcarthur/master
Resolved: Type reference cannot refer to a property - for $.ui.keyCode

Thanks for the commit @scottmcarthur!
2014-02-13 12:20:39 +00:00
John Reilly fd9647286f Merge pull request #1689 from johnnyreilly/master
jQuery: removed redundant interface
2014-02-13 10:08:45 +00:00
scottmcarthur 1cbc6388ea Resolves KeyCode - Type reference cannot refer to a property
The interface of the property `$.ui.keyCode` uses a non-standard name `keyCode` which clashes with the property name, giving error `Type reference cannot refer to a property`. 

Changing the interface name from `keyCode` to `KeyCode` follows the interface naming convention and resolves this issue.
2014-02-13 09:47:35 +00:00
John Reilly 2bd68070e9 jQuery: added cr to retrigger CI build 2014-02-13 09:14:40 +00:00
Sven e496efed37 Typed callback arg to Marionette.Callbacks.add as a Function 2014-02-12 22:22:50 +01:00
Sven Tschui c9263134d8 Merge branch 'master' of github.com:borisyankov/DefinitelyTyped 2014-02-12 22:16:46 +01:00
Sven 6667394125 Improvment on AppRouter
Added appRoute to Marionette.AppRouter
Removed Controller type on processAppRoutes controller arg
Added AppRouterOptions
2014-02-12 22:11:31 +01:00
Sven b3fa44db17 Added closeRegions to Marionette.Application 2014-02-12 21:55:43 +01:00
John Reilly 5a9a727fa1 jQuery: removed redundant interface 2014-02-12 16:04:30 +00:00
Michel Salib 59263e826b Add missing return types 2014-02-12 15:55:41 +01:00
Michel Salib 62f9fa8fda Adding angular $animate definition 2014-02-12 14:50:21 +01:00
Matthew James Davis dc8b0911bd Update to latest mapsjs definition file 2014-02-12 21:08:59 +09:00
Masahiro Wakame 1a6eaf4055 Merge pull request #1665 from apsk/ember-typings
Ember: Improve routing-related typings
2014-02-12 12:27:08 +09:00
Masahiro Wakame b96b709728 Merge pull request #1679 from sventschui/master
Improvements to marionette type definition
2014-02-12 11:49:08 +09:00
Dénes Harmath 1f12c5faaa Provide missing method 2014-02-11 01:33:29 +01:00
Dénes Harmath eb7e941bd8 Add library reference 2014-02-11 01:27:23 +01:00
Dénes Harmath 4546665154 Preliminary version of AngularFire definition 2014-02-11 01:23:26 +01:00