mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
696 B
TypeScript
21 lines
696 B
TypeScript
// Type definitions for React v0.14 (react-addons-pure-render-mixin)
|
|
// 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/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="react.d.ts" />
|
|
|
|
declare namespace __React {
|
|
interface PureRenderMixin extends Mixin<any, any> {}
|
|
|
|
namespace __Addons {
|
|
export var PureRenderMixin: PureRenderMixin;
|
|
}
|
|
}
|
|
|
|
declare module "react-addons-pure-render-mixin" {
|
|
var PureRenderMixin: __React.PureRenderMixin;
|
|
type PureRenderMixin = __React.PureRenderMixin;
|
|
export = PureRenderMixin;
|
|
}
|