Starting react-addons module

We will use module merging to merge addons into the existing react
context.
This commit is contained in:
Phips Peter
2014-10-01 14:19:40 -07:00
parent 214a2a3dca
commit bf5cd4b9b1
3 changed files with 125 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// Type definitions for React with Addons 0.11.2
// Project: http://facebook.github.io/react/
// Definitions by: Asana <https://asana.com>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../react/react.d.ts" />
declare module "react/addons" {
export = React;
}
declare module React {
export var addons: {};
}