UNPKG

@bitcobblers/wod-wiki-library

Version:

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

14 lines (13 loc) 533 B
import { IRuntimeAction } from '../../IRuntimeAction'; import { ITimerRuntime } from '../../ITimerRuntime'; import { IRuntimeEvent } from '../../IRuntimeEvent'; import { EventHandler } from '../EventHandler'; export declare class CompleteEvent implements IRuntimeEvent { constructor(timestamp?: Date); timestamp: Date; name: string; } export declare class CompleteHandler extends EventHandler { protected eventType: string; protected handleEvent(event: IRuntimeEvent, runtime: ITimerRuntime): IRuntimeAction[]; }