UNPKG

suitest-js-api

Version:

Suitest is a test automation and device manipulation tool for living room devices and web browsers.

17 lines (13 loc) 381 B
import { AbstractChain, BaseChain, LaunchModeModifier, DeepLinkModifier, } from './modifiers'; export interface OpenAppChain extends BaseChain<OpenAppChain, OpenAppEvalResult, OpenAppAbandonedChain>, LaunchModeModifier<OpenAppChain>, DeepLinkModifier<OpenAppChain> {} interface OpenAppAbandonedChain extends AbstractChain {} type OpenAppEvalResult = undefined | boolean;