chore(doc-gen): convert private classes to interfaces in the docs

Closes #3576
This commit is contained in:
Peter Bacon Darwin
2015-09-04 19:01:26 +01:00
parent 4bffd97edd
commit 34b91c62c5
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
module.exports = function convertPrivateClassesToInterfacesProcessor(convertPrivateClassesToInterfaces) {
return {
$runAfter: ['processing-docs'],
$runBefore: ['docs-processed'],
$process: function(docs) {
convertPrivateClassesToInterfaces(docs, false);
return docs;
}
};
};