mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
No EOL
306 B
JavaScript
10 lines
No EOL
306 B
JavaScript
module.exports = function convertPrivateClassesToInterfacesProcessor(convertPrivateClassesToInterfaces) {
|
|
return {
|
|
$runAfter: ['processing-docs'],
|
|
$runBefore: ['docs-processed'],
|
|
$process: function(docs) {
|
|
convertPrivateClassesToInterfaces(docs, false);
|
|
return docs;
|
|
}
|
|
};
|
|
}; |