UNPKG

tcx-builder

Version:
12 lines (11 loc) 292 B
import { AbstractStep } from './AbstractStep'; export declare class Repeat extends AbstractStep { Repetitions: number; Child: AbstractStep[]; constructor(options: { stepId: number; repetitions: number; child: AbstractStep[]; }); toXml(): string; }