Skip to content

Commit 65d23bf

Browse files
committed
Format
1 parent 2b7df64 commit 65d23bf

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/types/store.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,7 @@ export type Observer<T> = {
108108
* @template A the type of actions which may be dispatched by this store.
109109
* @template StateExt any extension to state from store enhancers
110110
*/
111-
export interface Store<
112-
S = any,
113-
A extends Action = AnyAction,
114-
StateExt = {}
115-
> {
111+
export interface Store<S = any, A extends Action = AnyAction, StateExt = {}> {
116112
/**
117113
* Dispatches an action. It is the only way to trigger a state change.
118114
*

0 commit comments

Comments
 (0)