summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/shapes/File.js
blob: fb7bc06ea938a140b55318e9dcbdcfa0733f0d97 (plain)
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
});