yuyutaotao 57f6786628
feat(extract-data): extract data from same-origin iframe (#258)
* feat: extract data from same-origin iframe

* fix: ci snapshot

* fix: extracting timeout error

* fix: ci timeout

* fix: update assets

* feat: set default size of yaml as 1920x1080

* chore: update default viewport size

---------

Co-authored-by: zhouxiao.shaw <zhouxiao.shaw@bytedance.com>
2025-01-22 20:52:11 +08:00

7 lines
198 B
TypeScript

declare module 'http-server' {
export function createServer(options: http.ServerOptions): {
server: http.Server;
listen: (port: number, host: string, callback: () => void) => void;
};
}