From e21d688aff4fea52d7659c73d7bde48c97efe09b Mon Sep 17 00:00:00 2001 From: Blake LaFleur Date: Wed, 24 May 2017 22:13:06 -0500 Subject: [PATCH] fix(StoreDevtools): Type InjectionToken for AOT compilation --- modules/store-devtools/src/config.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/store-devtools/src/config.ts b/modules/store-devtools/src/config.ts index 9be1620efd..f5e871c5c1 100644 --- a/modules/store-devtools/src/config.ts +++ b/modules/store-devtools/src/config.ts @@ -8,12 +8,11 @@ export interface StoreDevtoolsConfig { shouldInstrument: Type | InjectionToken; } -export const STORE_DEVTOOLS_CONFIG = new InjectionToken('@ngrx/devtools Options'); -export const INITIAL_OPTIONS = new InjectionToken('@ngrx/devtools Initial Config'); +export const STORE_DEVTOOLS_CONFIG = new InjectionToken('@ngrx/devtools Options'); +export const INITIAL_OPTIONS = new InjectionToken('@ngrx/devtools Initial Config'); export const SHOULD_INSTRUMENT = new InjectionToken('@ngrx/devtools Should Instrument'); - export type StoreDevtoolsOptions = Partial | (() => Partial) - ; \ No newline at end of file + ;