summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/shapes/File.js
blob: 6c7df3ea38cb76f9da281a418322683a075fa6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
});