import { createStore } from '@modern-js-reduck/store'; import { ReduxLoggerOptions } from 'redux-logger'; export type PluginOptions = Parameters[0] & { /** * If it's false, the logger will be disabled. * If it's a object, it means options will pass to createLogger function */ logger?: false | ReduxLoggerOptions; // todo: achive effects params effects?: any; /** * Default: false * When it's true, will remove immer plugin */ disableImmer?: boolean; // todo: achive devtools params devtools?: any; };