Skip to content

Commit cfae843

Browse files
authored
Merge pull request #206 from arutkowski00/feature/providestore-types
feat(typings): add provideStore typings
2 parents 3a80142 + 7ea48db commit cfae843

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

index.d.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Action, AnyAction, Unsubscribe } from 'redux';
1+
import { Action, AnyAction, Store, Unsubscribe } from 'redux';
22

33
declare namespace ngRedux {
44

@@ -118,6 +118,14 @@ declare namespace ngRedux {
118118
* @param initialState
119119
*/
120120
createStoreWith<S = any, I = any>(reducer: Reducer<S>, middlewares?: (Middleware | string)[], storeEnhancers?: Function[], initialState?: I): void;
121+
/**
122+
* Initializes ngRedux with an existing Redux store.
123+
*
124+
* @param store
125+
* @param middlewares
126+
* @param storeEnhancers
127+
*/
128+
provideStore<S = any>(store: Store<S>, middlewares?: (Middleware | string)[], storeEnhancers?: Function[]): void;
121129
/**
122130
* ngRedux config object
123131
*/
@@ -127,4 +135,4 @@ declare namespace ngRedux {
127135

128136
declare var ngRedux: string;
129137
export as namespace ngRedux;
130-
export default ngRedux;
138+
export default ngRedux;

0 commit comments

Comments
 (0)