UNPKG

@huolala-tech/page-spy-browser

Version:

A developer tool for debugging remote web page.

14 lines (13 loc) 431 B
import type { OnInitParams, PageSpyPlugin } from '@huolala-tech/page-spy-types'; import { InitConfig } from '../config'; export default class PagePlugin implements PageSpyPlugin { name: string; static hasInitd: boolean; $pageSpyConfig: InitConfig | null; onInit({ config }: OnInitParams<InitConfig>): void; onReset(): void; static collectHtml(): { html: string; location: Location; }; }