SongGuess
    Preparing search index...

    Type Alias BrowserRunSnapshotSuccessResponse

    Success response for snapshot action.

    type BrowserRunSnapshotSuccessResponse = {
        meta: BrowserRunResponseMeta;
        result: { content: string; screenshot: string };
        success: true;
    }
    Index

    Properties

    Properties

    result: { content: string; screenshot: string }

    Type Declaration

    • content: string

      HTML content of the page.

    • screenshot: string

      Base64-encoded screenshot image.

    success: true