Marco
2671c57724
Fixed indentations
2016-02-22 21:06:57 +01:00
Marco
4f6567dfa7
Added some comments to the changes in sax.d.ts
2016-02-21 20:56:14 +01:00
Marco
ac01b090ae
Added the isSelfClosing property to the Tag interface
...
Split of the original Tag interface into Tag and QualifiedTag to represent the
two modes of using sax-js (using namespace prefixes or ignoring them). The
QualifiedTag interface now describes correctly the attributes property.
2016-02-21 20:49:38 +01:00
Horiuchi_H
95b7178e0e
Merge pull request #8168 from stepancar/patch-15
...
updated definitions
2016-02-19 16:14:29 +09:00
Stepan Mikhaylyuk
814826f8de
updated definitions
2016-02-19 09:55:52 +03:00
Horiuchi_H
f3803c43d6
Merge pull request #8162 from nicojs/master
...
Added typing information for parse5 (github.com/inikulin/parse5)
2016-02-19 14:49:27 +09:00
Horiuchi_H
515684cef8
Merge pull request #8156 from wxqqh/master
...
Add koa-1.1.2.d.ts open interfaces
2016-02-19 14:46:20 +09:00
Horiuchi_H
24c1fbefac
Merge pull request #8154 from oizie/patch-1
...
fixes import from
2016-02-19 12:31:17 +09:00
Horiuchi_H
9e677ad06b
Merge pull request #8153 from toddlucas/master
...
Add isomorphic-fetch and tests
2016-02-19 12:28:04 +09:00
Horiuchi_H
6ba6c28087
Merge pull request #8134 from j-sheppard/master
...
Add a configuration config object that supports mariasql client syntax
2016-02-19 12:25:35 +09:00
Horiuchi_H
82fee7f769
Merge pull request #8146 from reshadi/patch-1
...
Update node.d.ts
2016-02-19 12:22:21 +09:00
Horiuchi_H
f95cf3c90c
Merge pull request #8142 from remojansen/patch-1
...
Fixed wrong action creators type
2016-02-19 12:21:12 +09:00
Horiuchi_H
35cfc90fca
Merge pull request #8145 from onikiienko/master
...
leaflet-curve TypeScript type definitions
2016-02-19 12:20:16 +09:00
Horiuchi_H
c48aa2f4bd
Merge pull request #8140 from ThomasHickman/master
...
Created definitions for mz
2016-02-19 12:17:46 +09:00
Horiuchi_H
39ced332d3
Merge pull request #8102 from RReverser/patch-6
...
Fix chrome.runtime.getManifest() definition
2016-02-19 11:29:26 +09:00
nicojs
d15493ae49
Added typing information for parse5 (github.com/inikulin/parse5)
2016-02-18 22:40:17 +01:00
wxqqh
9eaf1275f4
Add open interfaces
...
Just link https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/express/express.d.ts#L16
2016-02-18 19:42:45 +08:00
Pedro Pereira
7b0f798f64
fixes import from
...
It now supports `import * as deepFreeze from "deep-freeze";`
2016-02-18 09:52:16 +00:00
Horiuchi_H
99c4fb76b5
Merge pull request #8100 from RReverser/patch-4
...
Depend chrome-app.d.ts on chrome.d.ts
2016-02-18 18:43:11 +09:00
Todd Lucas
83a71a2817
Add isomorphic-fetch and tests
2016-02-18 01:42:46 -08:00
Horiuchi_H
a57c54b2b2
Merge pull request #8114 from Felerius/nconf-enhancements
...
Fix nconf method unavailable while chaining
2016-02-18 18:03:21 +09:00
John Reilly
470954c4f4
Merge pull request #6810 from mmiszy/master
...
jquery: Fix noConflict return type. Fix #5840
2016-02-18 05:39:43 +00:00
Basarat Ali Syed
9c2dd05cb4
Merge pull request #8143 from doug/patch-1
...
elementClose tags a tag string
2016-02-18 08:34:28 +11:00
Mehrdad Reshadi
263705d313
Update node.d.ts
2016-02-17 13:20:56 -08:00
remojansen
9a0e11328b
added tests case and fixed issue
2016-02-17 20:42:26 +00:00
Bogdan Onikiienko
d9f074f6ca
comit for tests
2016-02-17 22:41:01 +02:00
Bogdan Onikiienko
389fc2d405
leaflet-curve TypeScript type definitions
2016-02-17 22:35:34 +02:00
Doug
967c4e8521
elementClose tags a tag string
2016-02-17 10:50:41 -08:00
Remo H. Jansen
0997ad0603
Fixed wrong action creators type
...
Using some of the redux-router action creators like pushState :
```
import { pushState } from 'redux-router';
export function saveEngagementAsVisibleSuccess(goTo) {
return function(dispatch) {
dispatch(pushState(null, goTo));
}
}
```
Throws the following error:
```
Error TS2349: Cannot invoke an expression whose type lacks a call signature.
```
The redux-router [source code](https://github.com/acdlite/redux-router/blob/master/src/actionCreators.js#L46-L63 ) declare those as functions not objects:
```
export function historyAPI(method) {
return (...args) => ({
type: HISTORY_API,
payload: {
method,
args
}
});
}
export const pushState = historyAPI('pushState');
export const push = historyAPI('push');
export const replaceState = historyAPI('replaceState');
export const replace = historyAPI('replace');
export const setState = historyAPI('setState');
export const go = historyAPI('go');
export const goBack = historyAPI('goBack');
export const goForward = historyAPI('goForward');
```
So I have update the types from `__ReduxRouter.ReduxRouterAction` to `__ReduxRouter.historyAPI`:
```
export const pushState: __ReduxRouter.historyAPI;
export const pushState: __ReduxRouter.historyAPI;
export const push: __ReduxRouter.historyAPI;
export const replaceState: __ReduxRouter.historyAPI;
export const replace: __ReduxRouter.historyAPI;
export const setState: __ReduxRouter.historyAPI;
export const go: __ReduxRouter.historyAPI;
export const goBack: __ReduxRouter.historyAPI;
export const goForward: __ReduxRouter.historyAPI;
```
2016-02-17 17:47:49 +00:00
Thomas Hickman
c722e81194
Create mz-tests.ts
2016-02-17 15:35:51 +00:00
Thomas Hickman
b93c6bae1e
Create mz.d.ts
2016-02-17 15:35:23 +00:00
Masahiro Wakame
aefd814615
Merge pull request #8129 from EToreo/master
...
Added continuation-local-storage access to Sequelize
2016-02-17 21:33:56 +09:00
Masahiro Wakame
bf4300f218
Merge pull request #8104 from mainnika/amqplib-fix-assertqueue-iface
...
amqplib -- add missed property to AssertQueue interface
2016-02-17 21:33:42 +09:00
Masahiro Wakame
12b8a28146
Merge pull request #8124 from rotozoom/master
...
Fixed bug with CoverageOptions
2016-02-17 21:32:15 +09:00
Masahiro Wakame
fe2057bd42
Merge pull request #8121 from vangorra/meteor-persistent-session
...
Adding support for meteor-persistant-session.
2016-02-17 21:31:06 +09:00
Masahiro Wakame
f4b2c01a5d
Merge pull request #8117 from nesstar/master
...
Hapi - Make route configuration response object def conform to 12.0.1.
2016-02-17 21:30:06 +09:00
Masahiro Wakame
b880fea6f1
Merge pull request #8069 from fongandrew/infer-difference-type
...
Lodash: Infer array type when using _.difference
2016-02-17 21:29:46 +09:00
Masahiro Wakame
389be26601
Merge pull request #8116 from PekkaPLeppanen/mqtt
...
Added type definition file and tests for MQTT.js
2016-02-17 21:13:28 +09:00
Masahiro Wakame
6a9f77a620
Merge pull request #8115 from MugeSo/add-express-opeapi-definition
...
Add definition for express-openapi
2016-02-17 21:12:34 +09:00
Masahiro Wakame
fe0363ee99
Merge pull request #8108 from RReverser/patch-7
...
Fix chrome.sockets.tcp.getSockets
2016-02-17 21:10:34 +09:00
Masahiro Wakame
b069b0575a
Merge pull request #8112 from aleung/chai
...
chai: enable chain style calling to use()
2016-02-17 21:09:48 +09:00
Masahiro Wakame
9b68c7ae12
Merge pull request #8105 from leonyu/materilize_css_update
...
Update MaterializeCSS to include Components
2016-02-17 21:09:33 +09:00
Masahiro Wakame
160eb46575
Merge pull request #8107 from flcdrg/event-stream
...
Add event-stream
2016-02-17 21:05:26 +09:00
Jon Sheppard
51e1f71209
Add a configuration config object that supports mariasql client syntax
2016-02-17 23:00:21 +11:00
Masahiro Wakame
cf43002813
Merge pull request #8101 from RReverser/patch-5
...
Fix chrome.identity.getRedirectURL return type
2016-02-17 21:00:02 +09:00
Masahiro Wakame
fccc837552
Merge pull request #8103 from bbodenmiller/patch-1
...
Github -> GitHub
2016-02-17 20:59:41 +09:00
Masahiro Wakame
5231383545
Merge pull request #8099 from SaschaNaz/uwp-2
...
UWP: Add some missing descriptions / fix incompatibility
2016-02-17 20:55:00 +09:00
Masahiro Wakame
9c6c494692
Merge pull request #8036 from alextkachman/master
...
angular.IRoute.controller can be defined as array
2016-02-17 20:54:35 +09:00
Masahiro Wakame
4bad5d18ef
Merge pull request #8098 from r-ising/mongodb
...
remove duplicate semicolon
2016-02-17 20:54:02 +09:00
Eric Thompson
f87806946a
Added continuation-local-storage access
2016-02-16 22:52:26 -08:00