File tree Expand file tree Collapse file tree
src/commands/commandreference Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -142,8 +142,8 @@ export default class CommandReferenceGenerate extends SfCommand<AnyJson> {
142142 return { warnings } ;
143143 }
144144
145- private pluginMap ( plugins : string [ ] ) : Record < string , unknown > {
146- const pluginToParentPlugin : Record < string , unknown > = { } ;
145+ private pluginMap ( plugins : string [ ] ) : Record < string , string > {
146+ const pluginToParentPlugin : Record < string , string > = { } ;
147147
148148 const resolveChildPlugins = ( parentPlugin : Interfaces . Plugin ) : void => {
149149 for ( const childPlugin of parentPlugin . pjson . oclif . plugins ?? [ ] ) {
@@ -168,7 +168,7 @@ export default class CommandReferenceGenerate extends SfCommand<AnyJson> {
168168 }
169169
170170 private async loadTopicMetadata ( ) : Promise < Record < string , unknown > > {
171- const plugins : Record < string , unknown > = { } ;
171+ const plugins : Record < string , boolean > = { } ;
172172 const topicsMeta : Record < string , unknown > = { } ;
173173
174174 for ( const cmd of this . config . commands ) {
You can’t perform that action at this time.
0 commit comments