feat: Adds ts rule noImplicitOverride and fix errors.

This commit is contained in:
damencho
2025-03-12 10:19:11 -05:00
committed by Дамян Минков
parent 480b6f7cdc
commit ea0f9e7934
336 changed files with 878 additions and 877 deletions

View File

@@ -14,9 +14,9 @@ import OverflowMenu from './OverflowMenu';
* An implementation of a button for showing the {@code OverflowMenu}.
*/
class OverflowMenuButton extends AbstractButton<AbstractButtonProps> {
accessibilityLabel = 'toolbar.accessibilityLabel.moreActions';
icon = IconDotsHorizontal;
label = 'toolbar.moreActions';
override accessibilityLabel = 'toolbar.accessibilityLabel.moreActions';
override icon = IconDotsHorizontal;
override label = 'toolbar.moreActions';
/**
* Handles clicking / pressing this {@code OverflowMenuButton}.
@@ -24,7 +24,7 @@ class OverflowMenuButton extends AbstractButton<AbstractButtonProps> {
* @protected
* @returns {void}
*/
_handleClick() {
override _handleClick() {
// @ts-ignore
this.props.dispatch(openSheet(OverflowMenu));