import {Page} from 'e2ed'; import type {MobileDeviceModel} from 'autotests/types'; type PageParams = CustomPageParams & Readonly<{mobileDevice?: MobileDeviceModel}>; /** * Abstract mobile page. */ export abstract class MobilePage extends Page> { /** * Type of mobile device. */ abstract readonly mobileDevice: MobileDeviceModel; }