SCION Microfrontend Platform - v1.4.0
    Preparing search index...

    Interface IntentSelector

    Allows filtering intents.

    interface IntentSelector {
        qualifier?: Qualifier;
        type?: string;
    }
    Index

    Properties

    Properties

    qualifier?: Qualifier

    If specified, filters intents matching the given qualifier. You can use the asterisk wildcard (*) to match multiple intents.

    • Asterisk wildcard character (*) Matches intents with such a qualifier property no matter of its value (except null or undefined). Use it like this: {property: '*'}.
    • Partial wildcard (**) Matches intents even if having additional properties. Use it like this: {'*': '*'}.
    type?: string

    If specified, filters intents of the given type.