UNPKG

@bitcobblers/wod-wiki-library

Version:

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

16 lines (15 loc) 550 B
import { ITimerRuntime } from '../../ITimerRuntime'; import { IRuntimeBlock } from '../../IRuntimeBlock'; import { LeafNodeAction } from './base/LeafNodeAction'; /** * Action that pushes the next action for the current block */ export declare class PushNextAction extends LeafNodeAction { name: string; /** * Apply the next action to a specific block * * @param runtime The timer runtime * @param block The block to apply the action to */ protected applyBlock(runtime: ITimerRuntime, block: IRuntimeBlock): void; }