mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
13 lines
487 B
TypeScript
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.3
|
|
|
|
import { Mixin } from 'react';
|
|
|
|
declare var PureRenderMixin: PureRenderMixin;
|
|
export = PureRenderMixin;
|
|
|
|
interface PureRenderMixin extends Mixin<any, any> { }
|