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

@@ -77,7 +77,7 @@ class NotificationsContainer extends Component<IProps> {
*
* @inheritdoc
*/
componentDidMount() {
override componentDidMount() {
// Set the initial dismiss timeout (if any)
// @ts-ignore
this._manageDismissTimeout();
@@ -88,7 +88,7 @@ class NotificationsContainer extends Component<IProps> {
*
* @inheritdoc
*/
componentDidUpdate(prevProps: IProps) {
override componentDidUpdate(prevProps: IProps) {
this._manageDismissTimeout(prevProps);
}
@@ -136,7 +136,7 @@ class NotificationsContainer extends Component<IProps> {
*
* @inheritdoc
*/
componentWillUnmount() {
override componentWillUnmount() {
this._clearNotificationDismissTimeout();
}
@@ -177,7 +177,7 @@ class NotificationsContainer extends Component<IProps> {
*
* @inheritdoc
*/
render() {
override render() {
const { _notifications, shouldDisplayTileView, toolboxVisible } = this.props;
let notificationsContainerStyle;