UNPKG

@bitcobblers/wod-wiki-library

Version:

A specialized markdown-like workout syntax editor and runtime for defining workouts

12 lines (11 loc) 305 B
import { ITimeSpan } from './ITimeSpan'; import { RuntimeMetric } from './RuntimeMetric'; export declare class RuntimeSpan { blockId?: string; blockKey?: string; index?: number; duration?: number | undefined; timeSpans: ITimeSpan[]; metrics: RuntimeMetric[]; leaf?: boolean; }