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) 260 B
import { AbstractChain, BaseChain } from './modifiers'; export interface SleepChain extends BaseChain<SleepChain, SleepEvalResult, SleepAbandonedChain> {} interface SleepAbandonedChain extends AbstractChain {} type SleepEvalResult = undefined | boolean;