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

    Interface ScheduleActivationConfig<ActivationInput>

    interface ScheduleActivationConfig<ActivationInput extends object = EmptyInput> {
        __workflowActivation: "schedule";
        cron: string;
        mapInput?: (scope: ActivationScope) => ActivationInput;
        options?: ScheduleActivationOptions;
    }

    Type Parameters

    • ActivationInput extends object = EmptyInput
    Index

    Properties

    __workflowActivation: "schedule"
    cron: string
    mapInput?: (scope: ActivationScope) => ActivationInput