TANAKA Koichi
|
1ad67f5997
|
express-openapi: update express-openapi version
|
2016-02-19 15:45:43 +09:00 |
|
TANAKA Koichi
|
24e2e1fca3
|
express-openapi: fix argument object of initialize method
|
2016-02-19 12:35:50 +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 |
|
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 |
|
Masahiro Wakame
|
b57c33fec0
|
Merge pull request #8127 from teppeis/fix-power-assert-module
fix(power-assert): use CommonJS style default export statement
|
2016-02-17 14:35:05 +09:00 |
|
teppeis
|
0c0597f60f
|
fix(power-assert): use CommonJS style default export statement
|
2016-02-17 12:44:50 +09:00 |
|
Daniel Rosenwasser
|
472070cff0
|
Merge pull request #8113 from j6lim/react-native
Update definition for react-native : AppState
|
2016-02-16 17:55:28 -08:00 |
|
Jung-gun Lim
|
adb2d9174d
|
Update definition for react-native: Changed import syntax
|
2016-02-17 10:25:37 +09:00 |
|
MugeSo
|
0d0f6fe1e3
|
express-openapi: Allow reference in schema property of response object
|
2016-02-17 10:14:29 +09:00 |
|
rotozoom
|
3b63baa748
|
Fixed bug with CoverageOptions
Fixed bug with CoverageOptions
|
2016-02-16 15:53:10 -08:00 |
|
vangorra
|
bf507b4d6e
|
Adding support for meteor-persistant-session.
|
2016-02-16 11:28:41 -08:00 |
|
Ingvar Stepanyan
|
390d1e412f
|
Add file_system_provider_capabilities.watchable to Chrome manifest
|
2016-02-16 17:56:02 +00:00 |
|
Ingvar Stepanyan
|
78e6c2d471
|
Update chrome-app-tests.ts
|
2016-02-16 13:04:21 +00:00 |
|