mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-01 19:45:48 +08:00
* [react] Use HTMLDialogElement for the dialog node * Actually add the `open` property * This update requires typescript 2.6 * Update dependents of react to also require typescript 2.6
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.6
|
|
|
|
import { Mixin } from 'react';
|
|
|
|
declare var PureRenderMixin: PureRenderMixin;
|
|
export = PureRenderMixin;
|
|
|
|
interface PureRenderMixin extends Mixin<any, any> { }
|