Skip to content

Commit

Permalink
Update scripts/typedoc-plugin/src/cull-engine-internal.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
PPpro authored Aug 8, 2023
1 parent ad8f459 commit fe53f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/typedoc-plugin/src/cull-engine-internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function traverseObject (obj: Record<string, any>, recentGroups?: any[]): void {
}
}

function traverseArray (arr: Array<any>, recentGroups?: any): void {
function traverseArray (arr: Array<any>, recentGroups?: any[]): void {
for (let i = arr.length - 1; i >= 0; --i) {
const item = arr[i];
if (typeof item === 'number' || typeof item === 'string') {
Expand Down

0 comments on commit fe53f7c

Please sign in to comment.