// tslint:disable:no-shadowed-variable import * as React from 'react'; import { WebRxStatic, wx } from '../../WebRx'; import { WebRxReactStatic, wxr } from './Static'; declare module 'react' { interface Component

{ wx: WebRxStatic; wxr: WebRxReactStatic; } namespace Component { let wx: WebRxStatic; let wxr: WebRxReactStatic; } } React.Component.prototype.wx = wx; React.Component.prototype.wxr = wxr; React.Component.wx = wx; React.Component.wxr = wxr;