/** * This file was auto-generated by Fern from our API Definition. */ export interface ScrapeResponseContent { /** The mime type of content extracted from the browser window (usually text/plain but could be text/csv or other types depending on the site). */ contentType: string; /** The text content of the browser window. */ text: string; }