File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ type DocumentationConfig = {
12
12
theme : string ,
13
13
requireExtension ?: Array < string > ,
14
14
parseExtension : Array < string > ,
15
- noReferenceLinks ? : boolean
15
+ noReferenceLinks ? : boolean ,
16
+ markdownToc ?: boolean ,
17
+ documentExported ?: boolean ,
18
+ hljs ?: Object
16
19
} ;
17
20
18
21
type CommentError = {
@@ -112,7 +115,9 @@ type Comment = {
112
115
path ?: Array < {
113
116
name : string ,
114
117
scope : Scope
115
- } >
118
+ } > ,
119
+
120
+ ignore ?: boolean
116
121
} ;
117
122
118
123
type CommentMembers = {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ansiHTML.setColors({
26
26
* @param error parse or generation error
27
27
* @returns {Object } vinyl file object
28
28
*/
29
- function errorPage ( error : Error ) {
29
+ function errorPage ( error : Error | { codeFrame : string } ) {
30
30
let errorText = error . toString ( ) ;
31
31
console . error ( error ) ;
32
32
if ( error . codeFrame ) {
You can’t perform that action at this time.
0 commit comments