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'; |
import { InjectionToken } from '@angular/core'; |
||||
|
|
||||
export interface GfEnvironment { |
import { GfEnvironment } from './environment.interface'; |
||||
lastPublish: string | null; |
|
||||
production: boolean; |
|
||||
stripePublicKey: string; |
|
||||
} |
|
||||
|
|
||||
export const GF_ENVIRONMENT = new InjectionToken<GfEnvironment>( |
export const GF_ENVIRONMENT = new InjectionToken<GfEnvironment>( |
||||
'GF_ENVIRONMENT' |
'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