UNPKG

@bitcobblers/wod-wiki-library

Version:

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

11 lines (10 loc) 448 B
import { CodeFragment } from '../CodeFragment'; import { CodeMetadata } from '../CodeMetadata'; export declare class TextFragment implements CodeFragment { text: string; level?: string | undefined; meta?: CodeMetadata | undefined; constructor(text: string, level?: string | undefined, meta?: CodeMetadata | undefined); type: string; applyToMetric(metric: import('../RuntimeMetric').RuntimeMetric, _rounds?: number): void; }