Lint redux-immutable/index.d.ts

merge-requests/1098/head
Alex Gleason 2022-03-18 16:09:36 -05:00
rodzic 12c57e02a5
commit 454f1e3e8d
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -7,8 +7,8 @@
// TypeScript Version: 2.3
declare module 'redux-immutable' {
import { ReducersMapObject, Reducer, Action } from 'redux';
import { Collection, Record as ImmutableRecord } from 'immutable';
import { ReducersMapObject, Reducer, Action } from 'redux';
export function combineReducers<S, A extends Action, T>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Keyed<T, S>): Reducer<S, A>;
export function combineReducers<S, A extends Action>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S, A>;