@@ -106,9 +106,7 @@ export class ApiDocsTransformer {
106
106
symbolMap : SymbolMap ;
107
107
pages : Pages ;
108
108
} > {
109
- this . addKindStringsBackToAllNodes (
110
- this . project as unknown as Record < string , unknown >
111
- ) ;
109
+ this . addKindStringsBackToAllNodes ( this . project ) ;
112
110
// In the first pass, determine the page/anchor where each node should
113
111
// appear in our layout, and index all nodes by TypeDoc numeric ID.
114
112
for ( const entrypoint of this . project . children ?? [ ] ) {
@@ -694,7 +692,7 @@ export class ApiDocsTransformer {
694
692
* api.html. This method recursively walks the TypeDoc node and adds
695
693
* `kindString` back to all nodes with a valid `kind` field.
696
694
*/
697
- private addKindStringsBackToAllNodes ( node : Record < string , unknown > ) {
695
+ private addKindStringsBackToAllNodes ( node : unknown ) {
698
696
if ( typeof node !== 'object' || node == null ) {
699
697
return ;
700
698
}
@@ -707,11 +705,10 @@ export class ApiDocsTransformer {
707
705
for ( const [ key , val ] of Object . entries ( node ) ) {
708
706
if ( key === 'kind' && typeof val === 'number' ) {
709
707
// Add a `kindString` field to the node.
710
- node [ 'kindString' ] = typedoc . ReflectionKind . singularString (
711
- val as ReflectionKind
712
- ) ;
708
+ ( node as { kindString : string } ) [ 'kindString' ] =
709
+ typedoc . ReflectionKind . singularString ( val as ReflectionKind ) ;
713
710
}
714
- this . addKindStringsBackToAllNodes ( val as Record < string , unknown > ) ;
711
+ this . addKindStringsBackToAllNodes ( val ) ;
715
712
}
716
713
}
717
714
0 commit comments