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