File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ export function isPublicDoc(doc: ApiDoc) {
30
30
if ( _isEnforcedPublicDoc ( doc ) ) {
31
31
return true ;
32
32
}
33
- if ( _hasDocsPrivateTag ( doc ) || doc . name . startsWith ( '_' ) ) {
33
+ if ( _hasDocsPrivateTag ( doc ) || doc . name . startsWith ( '_' ) ||
34
+ doc . name . startsWith ( 'ngAcceptInputType_' ) ) {
34
35
return false ;
35
36
} else if ( doc instanceof MemberDoc ) {
36
37
return ! _isInternalMember ( doc ) ;
Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ export class DocsPrivateFilter implements Processor {
27
27
// Filter out private class members which could be annotated
28
28
// with the "@docs-private" tag.
29
29
if ( isPublic && doc instanceof ClassExportDoc ) {
30
- doc . members = doc . members . filter ( memberDoc => isPublicDoc ( memberDoc ) ) ;
30
+ doc . members = doc . members . filter ( isPublicDoc ) ;
31
+ doc . statics = doc . statics . filter ( isPublicDoc ) ;
31
32
}
32
33
33
34
return isPublic ;
Original file line number Diff line number Diff line change 27
27
{%- endif -%}
28
28
29
29
< p class ="docs-api-property-name ">
30
- < code > {%- if property.isStatic -%}static {%- endif -%}{$ property.name $}: {$ property.type $}</ code >
30
+ < code > {%- if property.isStatic -%}static {%- endif -%}{$ property.name $}: {$ property.type $}</ code >
31
31
</ p >
32
32
</ td >
33
33
< td class ="docs-api-property-description "> {$ property.description | marked | safe $}</ td >
You can’t perform that action at this time.
0 commit comments