mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-24 19:32:07 +00:00
10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
|
|
function Summary() {
|
|
if (!(this instanceof Summary)) return new Summary();
|
|
}
|
|
|
|
Summary.prototype.type = 'summary';
|
|
|
|
|
|
module.exports = Summary;
|