UNPKG

playwright-fluent

Version:
9 lines (8 loc) 383 B
import { BrowserName } from '../actions'; import { DeviceName } from './device-names'; import { Device } from './device-descriptors'; export declare function getDevice(deviceName: DeviceName): Device | undefined; export declare const defaultDevice: Device; export declare function getBrowserArgsForDevice(device: Device): { andBrowser: (browsername: BrowserName) => string[]; };