UNPKG

@bitcobblers/wod-wiki-library

Version:

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

11 lines (10 loc) 429 B
import { CodeFragment } from '../CodeFragment'; import { CodeMetadata } from '../CodeMetadata'; export declare class ResistanceFragment implements CodeFragment { value: string; units: string; meta?: CodeMetadata | undefined; constructor(value: string, units: string, meta?: CodeMetadata | undefined); type: string; applyToMetric(metric: import('../RuntimeMetric').RuntimeMetric, rounds?: number): void; }