@@ -482,7 +482,7 @@ Resolve the markdown content reference
482482
483483**Signature :**
484484```typescript
485- export declare function resolve (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage ): string ;
485+ export declare function resolve (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage , customTags ?: string [] ): string ;
486486```
487487
488488#### Parameters
@@ -493,6 +493,7 @@ export declare function resolve(style: GenerateStyle, item: ApiItem, model: ApiM
493493| item | ApiItem | a [item ](https :// rushstack.io/pages/api/api-extractor-model.apiitem/) |
494494| model | ApiModel | a [model ](https :// rushstack.io/pages/api/api-extractor-model.apimodel/) |
495495| pkg | ApiPackage | a [package ](https :// rushstack.io/pages/api/api-extractor-model.apipackage/) |
496+ | customTags | string \[\] | TSDoc custom tags . This parameter is set to an array of custom tag names defined in `--tsdoc -config `. |
496497
497498#### Returns
498499
@@ -535,7 +536,7 @@ Resolve the markdown content reference
535536
536537**Signature :**
537538```typescript
538- export declare function resolve (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage ): string ;
539+ export declare function resolve (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage , customTags ?: string [] ): string ;
539540```
540541
541542#### Parameters
@@ -546,6 +547,7 @@ export declare function resolve(style: GenerateStyle, item: ApiItem, model: ApiM
546547| item | ApiItem | a [item ](https :// rushstack.io/pages/api/api-extractor-model.apiitem/) |
547548| model | ApiModel | a [model ](https :// rushstack.io/pages/api/api-extractor-model.apimodel/) |
548549| pkg | ApiPackage | a [package ](https :// rushstack.io/pages/api/api-extractor-model.apipackage/) |
550+ | customTags | string \[\] | TSDoc custom tags . This parameter is set to an array of custom tag names defined in `--tsdoc -config `. |
549551
550552#### Returns
551553
@@ -612,7 +614,7 @@ Markdown reference resolver
612614
613615**Signature :**
614616```typescript
615- export declare type ReferenceResolver = (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage ) => string ;
617+ export declare type ReferenceResolver = (style : GenerateStyle , item : ApiItem , model : ApiModel , pkg : ApiPackage , customTags ?: string [] ) => string ;
616618```
617619
618620
0 commit comments