Update typescript dependencies and some other updates (#25535)

* Update typescript dependencies and some other updates

* Fix lint

* Fix tests

* Address feedback

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Daniel Espino García
2023-12-04 15:29:42 +01:00
коммит произвёл GitHub
родитель ddefb1f9c5
Коммит fde9e179be
28 изменённых файлов: 8370 добавлений и 33528 удалений

Просмотреть файл

@@ -3,13 +3,13 @@
import React from 'react';
import {Route, Switch, Redirect} from 'react-router-dom';
import type {RouteComponentProps} from 'react-router-dom';
import type {CloudState} from '@mattermost/types/cloud';
import type {AdminConfig, EnvironmentConfig} from '@mattermost/types/config';
import type {Role} from '@mattermost/types/roles';
import type {DeepPartial} from '@mattermost/types/utilities';
import type {Theme} from 'mattermost-redux/selectors/entities/preferences';
import type {ActionFunc} from 'mattermost-redux/types/actions';
import SchemaAdminSettings from 'components/admin_console/schema_admin_settings';
@@ -30,10 +30,7 @@ import type {AdminDefinitionSubSection, AdminDefinitionSection} from './types';
import type {PropsFromRedux} from './index';
export interface Props extends PropsFromRedux {
match: {url: string};
currentTheme: Theme;
}
export type Props = PropsFromRedux & RouteComponentProps;
type State = {
filter: string;