DefinitelyTyped/react-dom
phiresky 084926e23a
react: Add target type to events
this allows getting the actual html element type from events.

Example:

```ts
render() {
    return <input onChange={e => console.log(e.target.value)}/>
}
```

Previously you would have to cast the target manually:
```ts
render() {
    return <input onChange={e => console.log((e.target as
    HTMLInputElement).value)}/>
}
```
2016-07-03 20:23:20 +02:00
..
index.d.ts react: Add target type to events 2016-07-03 20:23:20 +02:00
react-dom.server.d.ts Split out react-dom 2016-05-11 16:33:03 -07:00
tsconfig.json Turning on consistent casing flag and fixing failures 2016-06-30 15:14:49 -07:00