mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-06 00:20:30 +00:00

* 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>
7 lines
198 B
TypeScript
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;
|
|
};
|
|
}
|