@reactables/core 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,7 +11,7 @@ export interface EffectsAndSources {
|
|
|
11
11
|
}
|
|
12
12
|
export interface RxConfig<T, S extends Cases<T>> extends SliceConfig<T, S>, EffectsAndSources {
|
|
13
13
|
debug?: boolean;
|
|
14
|
-
/**@deprecated Use storeValue
|
|
14
|
+
/**@deprecated Use storeValue modifier instead to add store value behaviour to reactable */
|
|
15
15
|
storeValue?: boolean;
|
|
16
16
|
}
|
|
17
17
|
export declare const RxBuilder: <T, S extends Cases<T>>({ effects, sources, debug, storeValue, ...sliceConfig }: RxConfig<T, S>) => Reactable<T, { [K in keyof S]: (payload?: unknown) => void; }>;
|
package/package.json
CHANGED