summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-core/src/shapes/Summary.js
blob: 7efe4e0083c43726b48680e5654356d04a700aef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const React  = require('react');
const {
    arrayOf,
    shape
} = React.PropTypes;

const File = require('./File');
const Part = require('./SummaryPart');

module.exports = shape({
    file:  File.isRequired,
    parts: arrayOf(Part).isRequired
});