maests
Version:
An executable compiler for creating Maestro's yaml-flows with typescript.
13 lines (12 loc) • 453 B
TypeScript
import { ElementMatcher } from "./type";
type RepeatProps = {
times?: number;
while?: {
visible?: ElementMatcher;
notVisible?: ElementMatcher;
};
};
export declare const repeat: (props: RepeatProps, func: () => any) => void;
export declare const repeatWhileVisible: (matcher: ElementMatcher, func: () => any) => void;
export declare const repeatWhileNotVisible: (matcher: ElementMatcher, func: () => any) => void;
export {};