@modern-js/plugin-state 1.2.0 → 1.2.3

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.
package/src/types.ts DELETED
@@ -1,19 +0,0 @@
1
- import { createStore } from '@modern-js-reduck/store';
2
- import { ReduxLoggerOptions } from 'redux-logger';
3
-
4
- export type PluginOptions = Parameters<typeof createStore>[0] & {
5
- /**
6
- * If it's false, the logger will be disabled.
7
- * If it's a object, it means options will pass to createLogger function
8
- */
9
- logger?: false | ReduxLoggerOptions;
10
- // todo: achive effects params
11
- effects?: any;
12
- /**
13
- * Default: false
14
- * When it's true, will remove immer plugin
15
- */
16
- disableImmer?: boolean;
17
- // todo: achive devtools params
18
- devtools?: any;
19
- };