mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
584 B
TypeScript
17 lines
584 B
TypeScript
// Type definitions for React v0.14 (react-addons-create-fragment)
|
|
// Project: http://facebook.github.io/react/
|
|
// Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
/// <reference path="react.d.ts" />
|
|
|
|
declare namespace __React {
|
|
namespace __Addons {
|
|
export function createFragment(object: { [key: string]: ReactNode }): ReactFragment;
|
|
}
|
|
}
|
|
|
|
declare module "react-addons-create-fragment" {
|
|
export = __React.__Addons.createFragment;
|
|
}
|