Documentation
    Preparing search index...
    interface AbstractWorkflow {
        __: any;
        action?: string;
        autoSave?: boolean;
        onDone: (arg0: any) => any;
        prepareForm: (form: any) => Promise<void>;
        previewURL?: string;
        run: (body: any, req: any) => Promise<RunResult | undefined>;
        runStep: (context: any, stepIx: number) => Promise<RunResult | undefined>;
        saveURL?: string;
        singleStepForm: (body: any, req: any) => Promise<RunResult | undefined>;
        startAtStepURL?: (stepName: string) => string;
        steps: any[];
        title: (step: any, stepIx: number) => string;
    }

    Implemented by

    Index

    Properties

    __: any
    action?: string
    autoSave?: boolean
    onDone: (arg0: any) => any
    prepareForm: (form: any) => Promise<void>
    previewURL?: string
    run: (body: any, req: any) => Promise<RunResult | undefined>
    runStep: (context: any, stepIx: number) => Promise<RunResult | undefined>
    saveURL?: string
    singleStepForm: (body: any, req: any) => Promise<RunResult | undefined>
    startAtStepURL?: (stepName: string) => string
    steps: any[]
    title: (step: any, stepIx: number) => string