Codeminer42/cm42-central

View on GitHub
app/assets/javascripts/components/shapes/iteration.js

Summary

Maintainability
A
0 mins
Test Coverage
import PropTypes from 'prop-types';

const sprintPropTypesShape = PropTypes.shape({
  number: PropTypes.number,
  startDate: PropTypes.string,
  points: PropTypes.number,
  completedPoints: PropTypes.number,
  stories: PropTypes.array,
  isFiller: PropTypes.bool,
  remainingPoints: PropTypes.bool,
});

export default sprintPropTypesShape;