Documentation - v1.2.0-alpha.3
    Preparing search index...

    Values passed to the WaterfallStepContext constructor.

    interface WaterfallStepInfo<O extends object> {
        index: number;
        options: O;
        reason: DialogReason;
        result: any;
        values: object;
        onNext(result?: any): Promise<DialogTurnResult<any>>;
    }

    Type Parameters

    • O extends object
    Index

    Properties

    index: number

    The index of the current step in the waterfall dialog.

    options: O

    The options passed to the waterfall dialog when it was started.

    reason: DialogReason

    The reason the current step is being executed.

    result: any

    The result returned by the previous step or dialog.

    values: object

    A dictionary of values shared across all steps in the waterfall dialog.

    Methods