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