mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
- Refactor imports of PropTypes to use the prop-types package - Upgrade dependencies that were setting off deprecation warnings
12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
export default PropTypes.shape({
|
|
columns: PropTypes.arrayOf(PropTypes.shape({
|
|
description: PropTypes.string,
|
|
name: PropTypes.string,
|
|
type: PropTypes.string,
|
|
})),
|
|
description: PropTypes.string,
|
|
name: PropTypes.string,
|
|
platform: PropTypes.string,
|
|
});
|