/** * TriggerFilterAttributes is a map of context attribute names to values for * filtering by equality. Only exact matches will pass the filter. You can use * the value ” to indicate all strings match. */ export type ITriggerFilterAttributes = { [key: string]: string; }; export type TriggerFilterAttributes = ITriggerFilterAttributes; export type { ITriggerFilterAttributes as IDevKnativeEventingPkgApisEventingV1TriggerFilterAttributes, TriggerFilterAttributes as DevKnativeEventingPkgApisEventingV1TriggerFilterAttributes };