Magpie HTML - v0.1.3
    Preparing search index...

    Interface SwoopResult

    interface SwoopResult {
        url: string;
        html: string;
        console: SwoopConsoleEntry[];
        errors: SwoopScriptError[];
        timing: { start: number; end: number; duration: number };
    }
    Index

    Properties

    url: string

    Final URL after redirects.

    html: string

    Snapshot HTML (best-effort).

    console: SwoopConsoleEntry[]

    Console output captured from the isolated execution environment.

    errors: SwoopScriptError[]

    Script/bootstrap errors captured during execution.

    timing: { start: number; end: number; duration: number }

    Timing metadata (ms).