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