File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
repo-scripts/api-documenter/src/documenters Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -918,6 +918,11 @@ export class MarkdownDocumenter {
918
918
}
919
919
}
920
920
921
+ if ( functionsTable . rows . length > 0 ) {
922
+ output . push ( new DocHeading ( { configuration, title : 'Functions' } ) ) ;
923
+ output . push ( functionsTable ) ;
924
+ }
925
+
921
926
if ( classesTable . rows . length > 0 ) {
922
927
output . push ( new DocHeading ( { configuration, title : 'Classes' } ) ) ;
923
928
output . push ( classesTable ) ;
@@ -927,10 +932,6 @@ export class MarkdownDocumenter {
927
932
output . push ( new DocHeading ( { configuration, title : 'Enumerations' } ) ) ;
928
933
output . push ( enumerationsTable ) ;
929
934
}
930
- if ( functionsTable . rows . length > 0 ) {
931
- output . push ( new DocHeading ( { configuration, title : 'Functions' } ) ) ;
932
- output . push ( functionsTable ) ;
933
- }
934
935
935
936
if ( interfacesTable . rows . length > 0 ) {
936
937
output . push ( new DocHeading ( { configuration, title : 'Interfaces' } ) ) ;
You can’t perform that action at this time.
0 commit comments