DefinitelyTyped/types/react-addons-pure-render-mixin/index.d.ts
Ferdy Budhidharma 1d9679b2dc [react] add library managed attributes and upgrade TS requirement to 2.8 (#27901)
* feat(react): add library managed attributes and upgrade to 2.8

* fix broken tests

* fix lint errors
2018-08-06 18:51:26 +01:00

13 lines
487 B
TypeScript

// Type definitions for React (react-addons-pure-render-mixin) 0.14
// 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
// TypeScript Version: 2.8
import { Mixin } from 'react';
declare var PureRenderMixin: PureRenderMixin;
export = PureRenderMixin;
interface PureRenderMixin extends Mixin<any, any> { }