Interface PageContentResponse

interface PageContentResponse {
    content: null | string;
    isSelection?: boolean;
    images?: string[];
    error?: string;
}

Properties

content: null | string
isSelection?: boolean
images?: string[]
error?: string