mirror of https://github.com/ghostfolio/ghostfolio
8 changed files with 13 additions and 10 deletions
@ -0,0 +1,5 @@ |
|||
export interface GfEnvironment { |
|||
lastPublish: string | null; |
|||
production: boolean; |
|||
stripePublicKey: string; |
|||
} |
|||
@ -1,10 +1,6 @@ |
|||
import { InjectionToken } from '@angular/core'; |
|||
|
|||
export interface GfEnvironment { |
|||
lastPublish: string | null; |
|||
production: boolean; |
|||
stripePublicKey: string; |
|||
} |
|||
import { GfEnvironment } from './environment.interface'; |
|||
|
|||
export const GF_ENVIRONMENT = new InjectionToken<GfEnvironment>( |
|||
'GF_ENVIRONMENT' |
|||
@ -0,0 +1,2 @@ |
|||
export * from './environment.interface'; |
|||
export * from './environment.token'; |
|||
@ -1 +0,0 @@ |
|||
export * from './env.token'; |
|||
Loading…
Reference in new issue