mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
29 lines
732 B
TypeScript
29 lines
732 B
TypeScript
import { Connection as RealConnection } from './Connection';
|
|
import { Target as RealTarget } from './Browser';
|
|
import * as child_process from 'child_process';
|
|
declare global {
|
|
module Puppeteer {
|
|
|
|
export interface ConnectionTransport {
|
|
send(string);
|
|
close();
|
|
onmessage?: (message: string) => void,
|
|
onclose?: () => void,
|
|
}
|
|
|
|
export interface ChildProcess extends child_process.ChildProcess { }
|
|
|
|
export type Viewport = {
|
|
width: number;
|
|
height: number;
|
|
deviceScaleFactor?: number;
|
|
isMobile?: boolean;
|
|
isLandscape?: boolean;
|
|
hasTouch?: boolean;
|
|
}
|
|
|
|
export class Connection extends RealConnection { }
|
|
export class Target extends RealTarget { }
|
|
}
|
|
}
|