File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 88export { renameDevtoolsName } from './lib/devtools/rename-devtools-name' ;
99export { patchState , updateState } from './lib/devtools/update-state' ;
1010export { withDevToolsStub } from './lib/devtools/with-dev-tools-stub' ;
11- export { withDevtools } from './lib/devtools/with-devtools' ;
11+ export { DevtoolsFeature , withDevtools } from './lib/devtools/with-devtools' ;
1212
1313export {
1414 createEffects ,
Original file line number Diff line number Diff line change @@ -8,12 +8,15 @@ import {
88} from '@ngrx/signals' ;
99import { DefaultTracker } from './internal/default-tracker' ;
1010import {
11- DevtoolsFeature ,
11+ DevtoolsFeature as DevtoolsFeatureInternal ,
1212 DevtoolsInnerOptions ,
1313} from './internal/devtools-feature' ;
1414import { DevtoolsSyncer } from './internal/devtools-syncer.service' ;
1515import { ReduxDevtoolsExtension } from './internal/models' ;
1616
17+ // Users requested that we export this type: https://github.com/angular-architects/ngrx-toolkit/issues/178
18+ export type DevtoolsFeature = DevtoolsFeatureInternal ;
19+
1720declare global {
1821 interface Window {
1922 __REDUX_DEVTOOLS_EXTENSION__ : ReduxDevtoolsExtension | undefined ;
You can’t perform that action at this time.
0 commit comments