File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ type DocumentationConfig = {
1212 theme : string ,
1313 requireExtension ?: Array < string > ,
1414 parseExtension : Array < string > ,
15- noReferenceLinks ? : boolean
15+ noReferenceLinks ? : boolean ,
16+ markdownToc ?: boolean ,
17+ documentExported ?: boolean ,
18+ hljs ?: Object
1619} ;
1720
1821type CommentError = {
@@ -112,7 +115,9 @@ type Comment = {
112115 path ?: Array < {
113116 name : string ,
114117 scope : Scope
115- } >
118+ } > ,
119+
120+ ignore ?: boolean
116121} ;
117122
118123type CommentMembers = {
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ansiHTML.setColors({
2626 * @param error parse or generation error
2727 * @returns {Object } vinyl file object
2828 */
29- function errorPage ( error : Error ) {
29+ function errorPage ( error : Error | { codeFrame : string } ) {
3030 let errorText = error . toString ( ) ;
3131 console . error ( error ) ;
3232 if ( error . codeFrame ) {
You can’t perform that action at this time.
0 commit comments