mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
Add secondary exports to extension package
This commit is contained in:
parent
37539fc01e
commit
0958a7f385
|
@ -229,3 +229,16 @@ export const devToolsEnhancer: (options?: EnhancerOptions) => StoreEnhancer =
|
||||||
return noop;
|
return noop;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export {
|
||||||
|
composeWithDevTools as composeWithDevToolsDevelopmentOnly,
|
||||||
|
devToolsEnhancer as devToolsEnhancerDevelopmentOnly,
|
||||||
|
} from './developmentOnly';
|
||||||
|
export {
|
||||||
|
composeWithDevTools as composeWithDevToolsLogOnly,
|
||||||
|
devToolsEnhancer as devToolsEnhancerLogOnly,
|
||||||
|
} from './logOnly';
|
||||||
|
export {
|
||||||
|
composeWithDevTools as composeWithDevToolsLogOnlyInProduction,
|
||||||
|
devToolsEnhancer as devToolsEnhancerLogOnlyInProduction,
|
||||||
|
} from './logOnlyInProduction';
|
||||||
|
|
Loading…
Reference in New Issue
Block a user