Skip to content

Commit

Permalink
fix(router-store): use non-const enum to allow isolatedModules tsconf…
Browse files Browse the repository at this point in the history
…ig option (#4554)
  • Loading branch information
dangrussell authored Oct 9, 2024
1 parent 806c1d1 commit f993759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/router-store/src/router_store_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const ROUTER_CONFIG = new InjectionToken(
* Minimal = Serializes the router event with MinimalRouterStateSerializer
* Full = Serializes the router event with FullRouterStateSerializer
*/
export const enum RouterState {
export enum RouterState {
Full,
Minimal,
}
Expand Down

0 comments on commit f993759

Please sign in to comment.