Skip to content

Commit

Permalink
fix(core): replace any types by valid types (#1378)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Feb 6, 2024
1 parent 85d9b97 commit 02c4bc1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/common/src/core/slickCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,15 +439,15 @@ export class SlickGroup extends SlickNonDataItem {
* @property groups
* @type {Array}
*/
groups: any[] = null as any;
groups: SlickGroup[] = null as any;

/**
* A unique key used to identify the group. This key can be used in calls to DataView
* collapseGroup() or expandGroup().
* A unique key used to identify the group.
* This key can be used in calls to DataView `collapseGroup()` or `expandGroup()`.
* @property groupingKey
* @type {Object}
*/
groupingKey: any = null;
groupingKey: string = '';

constructor() {
super();
Expand Down Expand Up @@ -508,7 +508,7 @@ export class SlickGroupTotals extends SlickNonDataItem {
* @constructor
*/
export class SlickEditorLock {
activeEditController: any = null;
activeEditController: EditController | null = null;

/**
* Returns true if a specified edit controller is active (has the edit lock).
Expand Down

0 comments on commit 02c4bc1

Please sign in to comment.