Allows filtering intents.

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

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.