UNPKG

@bitcobblers/wod-wiki-library

Version:

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

10 lines (9 loc) 391 B
import { CodeFragment } from '../CodeFragment'; import { CodeMetadata } from '../CodeMetadata'; export declare class RoundsFragment implements CodeFragment { count: number; meta?: CodeMetadata | undefined; constructor(count: number, meta?: CodeMetadata | undefined); type: string; applyToMetric(metric: import('../RuntimeMetric').RuntimeMetric, rounds?: number): void; }