import { Singleton } from "../../src/Decorator"; import { COMPONENT_A_VALUE } from "../CONSTANTS"; @Singleton() export class ComponentA{ private value: string getFromThis(): string { return this.value } initialize(): void{ this.value = COMPONENT_A_VALUE } }