microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.3.2

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ReactTypings/react/react-addons-pure-render-mixin.d.ts

20lines · modecode

1// Type definitions for React v0.14 (react-addons-pure-render-mixin)
2// Project: http://facebook.github.io/react/
3// Definitions by: Asana <https://asana.com>, AssureSign <http://www.assuresign.com>, Microsoft <https://microsoft.com>
4// Definitions: https://github.com/borisyankov/DefinitelyTyped
5
6/// <reference path="react.d.ts" />
7
8declare namespace __React {
9 interface PureRenderMixin extends Mixin<any, any> {}
10
11 namespace __Addons {
12 export var PureRenderMixin: PureRenderMixin;
13 }
14}
15
16declare module "react-addons-pure-render-mixin" {
17 var PureRenderMixin: __React.PureRenderMixin;
18 type PureRenderMixin = __React.PureRenderMixin;
19 export = PureRenderMixin;
20}
21