UNPKG

suitest-js-api

Version:

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

14 lines (9 loc) 303 B
import { AbstractChain, BaseChain } from './modifiers'; export interface ClearAppDataChain extends BaseChain<ClearAppDataChain, ClearAppDataEvalResult, ClearAppDataAbandonedChain> {} interface ClearAppDataAbandonedChain extends AbstractChain {} type ClearAppDataEvalResult = undefined | boolean;