1 2 3 4 5 6 7 8 9 10 11 12 13
const React = require('react'); const { oneOf, string, instanceOf, shape } = React.PropTypes; module.exports = shape({ mtime: instanceOf(Date).isRequired, path: string.isRequired, type: oneOf(['', 'markdown', 'asciidoc']).isRequired });