@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
12 lines (11 loc) • 483 B
TypeScript
import { CodeFragment } from '../CodeFragment';
import { CodeMetadata } from '../CodeMetadata';
import { GroupType } from '../parser/timer.visitor';
export declare class LapFragment implements CodeFragment {
group: GroupType;
image: string;
meta?: CodeMetadata | undefined;
constructor(group: GroupType, image: string, meta?: CodeMetadata | undefined);
type: string;
applyToMetric(_metric: import('../RuntimeMetric').RuntimeMetric, _rounds?: number): void;
}