How to use the @scion/microfrontend-platform.Topics.UnregisterIntent function in @scion/microfrontend-platform

To help you get started, we’ve selected a few @scion/microfrontend-platform examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github SchweizerischeBundesbahnen / scion-workbench / apps / microfrontend-apps / src / testing-app / manifest / manage-intents / manage-intents.component.ts View on Github external
public onIntentUnregister(intent: Intent): void {
    const command: IntentUnregisterCommand = {type: intent.type, qualifier: intent.qualifier};
    Beans.get(MessageClient).publish$(Topics.UnregisterIntent, command).subscribe();
  }
}