@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
15 lines (14 loc) • 585 B
TypeScript
import { IRuntimeAction } from '../../IRuntimeAction';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { EventHandler } from '../EventHandler';
export declare class NextStatementEvent implements IRuntimeEvent {
constructor(timestamp?: Date, blockId?: number);
timestamp: Date;
blockId?: number;
name: string;
}
export declare class NextStatementHandler extends EventHandler {
protected eventType: string;
protected handleEvent(_event: IRuntimeEvent, _runtime: ITimerRuntime): IRuntimeAction[];
}