suitest-js-api
Version:
Suitest is a test automation and device manipulation tool for living room devices and web browsers.
13 lines (9 loc) • 339 B
TypeScript
import {
AbstractChain,
BaseChain,
} from './modifiers';
export interface SetScreenOrientationChain extends
BaseChain<SetScreenOrientationChain, SetScreenOrientationEvalResult, SetScreenOrientationAbandonedChain>
{}
interface SetScreenOrientationAbandonedChain extends AbstractChain {}
type SetScreenOrientationEvalResult = unknown;