@valon-technologies/gestalt
    Preparing search index...

    Interface EventActivationConfig<ActivationInput>

    interface EventActivationConfig<ActivationInput extends object = EmptyInput> {
        __workflowActivation: "event";
        type: string;
        mapInput?: (event: EventScope) => ActivationInput;
        options?: EventActivationOptions;
    }

    Type Parameters

    • ActivationInput extends object = EmptyInput
    Index

    Properties

    __workflowActivation: "event"
    type: string
    mapInput?: (event: EventScope) => ActivationInput