File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -103,14 +103,15 @@ export interface Slice<
103103 /**
104104 * Get localised slice selectors (expects to be called with *just* the slice's state as the first parameter)
105105 */
106- getSelectorFactories ( ) : Id <
107- SliceDefinedSelectorFactories < State , SelectorFactories , State >
108- >
106+ getSelectorFactories (
107+ this : this
108+ ) : Id < SliceDefinedSelectorFactories < State , SelectorFactories , State > >
109109
110110 /**
111111 * Get globalised slice selector factories (`selectState` callback is expected to receive first parameter and return slice state)
112112 */
113113 getSelectorFactories < RootState > (
114+ this : this,
114115 selectState : ( rootState : RootState ) => State
115116 ) : Id < SliceDefinedSelectorFactories < State , SelectorFactories , RootState > >
116117
You can’t perform that action at this time.
0 commit comments