Comply with noImplicitAny (#9940)
* Stash noImplicitAny work * Stash * Fix imports * Iterate * Fix tests * Delint * Fix tests
This commit is contained in:
parent
ac7f69216e
commit
61a63e47f4
359 changed files with 1621 additions and 1353 deletions
|
@ -617,8 +617,8 @@ export class UnwrappedEventTile extends React.Component<EventTileProps, IState>
|
|||
}
|
||||
|
||||
private propsEqual(objA: EventTileProps, objB: EventTileProps): boolean {
|
||||
const keysA = Object.keys(objA);
|
||||
const keysB = Object.keys(objB);
|
||||
const keysA = Object.keys(objA) as Array<keyof EventTileProps>;
|
||||
const keysB = Object.keys(objB) as Array<keyof EventTileProps>;
|
||||
|
||||
if (keysA.length !== keysB.length) {
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue