UNPKG

suitest-js-api

Version:

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

13 lines (9 loc) 279 B
import { AbstractChain, BaseChain, } from './modifiers'; export interface CloseAppChain extends BaseChain<CloseAppChain, CloseAppEvalResult, CloseAppAbandonedChain> {} interface CloseAppAbandonedChain extends AbstractChain {} type CloseAppEvalResult = undefined | boolean;