microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
ReactTypings/react/react-addons-create-fragment.d.ts
16lines · modecode
| 1 | // Type definitions for React v0.14 (react-addons-create-fragment) |
| 2 | // Project: http://facebook.github.io/react/ |
| 3 | // Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com> |
| 4 | // Definitions: https://github.com/borisyankov/DefinitelyTyped |
| 5 | |
| 6 | /// <reference path="react.d.ts" /> |
| 7 | |
| 8 | declare namespace __React { |
| 9 | namespace __Addons { |
| 10 | export function createFragment(object: { [key: string]: ReactNode }): ReactFragment; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | declare module "react-addons-create-fragment" { |
| 15 | export = __React.__Addons.createFragment; |
| 16 | } |
| 17 | |