@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
13 lines (12 loc) • 491 B
TypeScript
import { IRuntimeAction } from '../../IRuntimeAction';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { EventHandler } from '../EventHandler';
export declare class TickEvent implements IRuntimeEvent {
timestamp: Date;
name: string;
}
export declare class TickHandler extends EventHandler {
protected eventType: string;
protected handleEvent(_event: IRuntimeEvent, runtime: ITimerRuntime): IRuntimeAction[];
}