* SyntheticEventData extends browser Event
From https://facebook.github.io/react/docs/events.html
Your event handlers will be passed instances of SyntheticEvent, a
cross-browser wrapper around the browser's native event. It has the same
interface as the browser's native event, including stopPropagation() and
preventDefault(), except the events work identically across all
browsers.
* make react synthetic event properties optional
* Type Animated.Value
* react-native Animated.spring
* react-native AnimatedValueXY type
* react-native Animated.parallel
* react-native Animated.event
* react-native Animated components
* react-native tweak Animated types
* react-native add Animated.timing
* react-native rewrite animation config as interface
* react-native remove semi-colons
* react-native refine the type AnimatedValue
* react-native refine the type AnimatedValue
* react-native animated no implicit any
* react-native animated API tests
* react-native more Animated API type coverage
* react-native add Animated.Base as alias of commone base type
* react-native fix typedef bug
* Update vexflow.d.ts
Backends renderer enum starts with 1, according to http://www.vexflow.com/docs/renderer.html
* Update vexflow.d.ts
fix all enums
* Update vexflow.d.ts
fix StaveConnector 'type' enum. "SINGLE_LEFT and SINGLE are the same value for compatibility with older versions of vexflow"
* added material-design-lite definition and tests
* adding react-mdl
* fixed es6 compilation by chanigng import
i don't know why git is saying that every line changed...
* fixed es6 compilation
* Create dts for surveyjs
surveyjs is origionally written on TypeScript
* Fix The Travis CI build
* Fix The Travis CI build
* Fix The Travis CI build
* Rename survey.d.ts to survey-knockout.d.ts
Even citing to heredoc:
* @return {!webdriver.promise.Promise} A promise that will resolve to the
* scripts return value.
*/
and this is not Promise<void>. This is Promise<any>.
* `t("foo", {returnObjects: true})` returns an Object
* `t("foo", {returnObjects: true})` returns an Object
* () will return Object you will have to cast it to any to access properties
* restify: fix compile errors in test file
did not compile without error when compiling with:
`tsc --noImplicitAny restify/restify-tests.ts`
* restify: add RouteSpec interface
This update will also give you the ability to use import/require imports in your projects like this:
`import * as hello from 'hellojs';`
or
`import hello = require('hellojs');`
Otherwise, TS will always say module 'hellojs' is undefined (if included as `import 'hellojs`)