tcx-builder
Version:
19 lines (18 loc) • 494 B
TypeScript
import { AbstractStep } from './AbstractStep';
import { Intensity } from '../../interfaces';
import { Duration } from '../Duration';
import { Target } from '../Target';
export declare class Step extends AbstractStep {
Name?: string;
Duration: Duration;
Intensity: Intensity;
Target: Target;
constructor(options: {
stepId: number;
name?: string;
duration: Duration;
intensity: Intensity;
target: Target;
});
toXml(): string;
}