Skip to content

Commit d165191

Browse files
committed
fix(BaseExport): Fixed declaration lint issue.
1 parent b974176 commit d165191

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/services/exporter-common/base-export-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,10 +1343,10 @@ export abstract class IgxBaseExporter {
13431343
}
13441344

13451345
private groupByKeys(items: any[], keys: any[]): any {
1346-
const group = (data: any[], keys: any[]): any => {
1346+
const group = (data: any[], currentKeys: any[]): any => {
13471347
if (keys.length === 0) return data;
13481348

1349-
const newKeys = [...keys];
1349+
const newKeys = [...currentKeys];
13501350
const key = newKeys.shift().name;
13511351
const map = new Map<string, any>();
13521352

0 commit comments

Comments
 (0)