Documentation
    Preparing search index...

    Provides pipes for handling events of a prompt.

    interface PromptEventPipes<T = any> {
        error: Observable<FailedPromptStateData>;
        success: Observable<SuccessfulPromptStateData<T>>;
    }

    Type Parameters

    • T = any

      The type of the answer.

    Index

    Properties

    Properties

    error: Observable<FailedPromptStateData>

    An object representing an error.

    success: Observable<SuccessfulPromptStateData<T>>

    A pipeline for successful inputs.