fleet/frontend/interfaces/osquery_table.js

15 lines
324 B
JavaScript
Raw Normal View History

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,
});