Codeminer42/cm42-central

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

Summary

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

const attachmentPropTypesShape = PropTypes.shape({
  publicId: PropTypes.string,
  version: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
  format: PropTypes.string,
  resourceType: PropTypes.string,
  path: PropTypes.string,
});

export default attachmentPropTypesShape;