UNPKG

@bitcobblers/wod-wiki-library

Version:

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

17 lines (16 loc) 446 B
import { OutputAction } from '../OutputAction'; export declare enum TimerState { STOPPED = "STOPPED", RUNNING_COUNTDOWN = "RUNNING_COUNTDOWN", RUNNING_COUNTUP = "RUNNING_COUNTUP", PAUSED = "PAUSED" } export declare class SetTimerStateAction extends OutputAction { state: TimerState; name: string; constructor(state: TimerState, name: string); getData(): { name: string; state: TimerState; }; }