Documentation
    Preparing search index...

    Represents a prompt.

    interface PromptBase {
        status: string;
        run(): Promise<any>;
    }
    Index

    Properties

    Methods

    Properties

    status: string

    Gets or sets a string which represents the state of the prompt.

    Methods

    • Runs the prompt.

      Returns Promise<any>

      The result of the prompt.