summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/shapes/Page.js
blob: c589f54227d5b636aa84c1340a86c751e14438de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const React  = require('react');
const {
    oneOf,
    string,
    number,
    shape
} = React.PropTypes;


module.exports = shape({
    title:   string.isRequired,
    content: string.isRequired,
    level:   string.isRequired,
    depth:   number.isRequired,
    dir:     oneOf(['ltr', 'rtl']).isRequired
});