import React, {PropTypes} from 'react';
class MyComponent extends React.Component {
static propTypes = {
foo: PropTypes.string,
bar: PropTypes.number.deprecated("Use props.foo instead of props.bar"),
});
}
; // Works!
; // Deprecation Warning: Use props.foo instead of props.bar (MyComponent)