mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 02:35:23 -04:00
Update dependency eslint-plugin-import to v2.25.2 (#1555)
* Update dependency eslint-plugin-import to v2.25.2 Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Make type imports more explicit Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Enforce use of type imports Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
fc3a3fa1a9
commit
2abe40ef1d
264 changed files with 567 additions and 504 deletions
|
@ -4,27 +4,28 @@
|
|||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
import { combineReducers, createStore, Reducer } from 'redux'
|
||||
import { Config } from '../api/config/types'
|
||||
import type { Reducer } from 'redux'
|
||||
import { combineReducers, createStore } from 'redux'
|
||||
import type { Config } from '../api/config/types'
|
||||
import { ApiUrlReducer } from './api-url/reducers'
|
||||
import { ApiUrlObject } from './api-url/types'
|
||||
import type { ApiUrlObject } from './api-url/types'
|
||||
import { MotdReducer } from './motd/reducers'
|
||||
import { OptionalMotdState } from './motd/types'
|
||||
import type { OptionalMotdState } from './motd/types'
|
||||
import { ConfigReducer } from './config/reducers'
|
||||
import { DarkModeConfigReducer } from './dark-mode/reducers'
|
||||
import { DarkModeConfig } from './dark-mode/types'
|
||||
import type { DarkModeConfig } from './dark-mode/types'
|
||||
import { EditorConfigReducer } from './editor/reducers'
|
||||
import { EditorConfig } from './editor/types'
|
||||
import type { EditorConfig } from './editor/types'
|
||||
import { NoteDetailsReducer } from './note-details/reducer'
|
||||
import { NoteDetails } from './note-details/types'
|
||||
import type { NoteDetails } from './note-details/types'
|
||||
import { UserReducer } from './user/reducers'
|
||||
import { OptionalUserState } from './user/types'
|
||||
import { UiNotificationState } from './ui-notifications/types'
|
||||
import type { OptionalUserState } from './user/types'
|
||||
import type { UiNotificationState } from './ui-notifications/types'
|
||||
import { UiNotificationReducer } from './ui-notifications/reducers'
|
||||
import { HistoryEntry } from './history/types'
|
||||
import type { HistoryEntry } from './history/types'
|
||||
import { HistoryReducer } from './history/reducers'
|
||||
import { RendererStatusReducer } from './renderer-status/reducers'
|
||||
import { RendererStatus } from './renderer-status/types'
|
||||
import type { RendererStatus } from './renderer-status/types'
|
||||
import { composeWithDevTools } from 'redux-devtools-extension/developmentOnly'
|
||||
|
||||
export interface ApplicationState {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue