18734 Commits
Author SHA1 Message Date
Chris McGrath 3b93a8f58b added flickity definitions, tests, and constants class 2016-02-17 23:45:46 -05:00
Jasvir Nagra 20e1eb9616 Correct the signature of setHeader
setHeader() takes either a string or a string array as it's second argument.

See https://nodejs.org/api/http.html#http_response_setheader_name_value
2016-02-17 14:13:55 -08: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
borislavjivkov 182d6f969e Rename pace to HubSpot-pace 2016-02-17 21:35:50 +02:00
Amrit Kahlon 950aefe678 Fixed naming conventions 2016-02-17 11:10:46 -08: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
Kohei Hisakuni 220e6719ea Change module back to namespace 2016-02-17 07:25:16 -08: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
Christopher Brown 3ac0f658bd Parser#check(...) is a chainable function, just like all the others 2016-02-16 16:35:04 -06: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 e5d42057e2 Add chrome.system.display definitions 2016-02-16 14:31:35 +00:00
Ingvar Stepanyan 78e6c2d471 Update chrome-app-tests.ts 2016-02-16 13:04:21 +00:00
Leo Liang 59bb988b64 New definition for promisify-supertest 2016-02-16 18:23:54 +08:00
Eirik Alvær 918608a5e0 Make route configuration response object def conform to 12.0.1.
The response object specified in IRouteAdditionalConfigurationOptions did not follow the spec given by the Hapi 12.0.1 documentation. Changes have been made to fix this problem. [Hapi Route Options documentation](http://hapijs.com/api/12.0.1#route-options)
2016-02-16 11:17:22 +01:00
Pekka Leppänen 1649285384 Added type definition file and tests for MQTT.js 2016-02-16 11:25:46 +02:00
MugeSo 01d18f8a91 express-openapi: Add empty line at EOF 2016-02-16 18:14:17 +09:00
MugeSo 1d3b1d6a61 express-openapi: Add definition for path item module 2016-02-16 18:10:12 +09:00
MugeSo cbe236ec27 express-openapi: fix definition for OpenAPI definition
fix exclusiveMaximuma property is now optional
fix Parameters Object is now array of union type of InBodyParameter,
GeneralParameter and Reference Object
2016-02-16 18:03:17 +09:00