UNPKG

@bitcobblers/wod-wiki-library

Version:

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

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