@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
15 lines (14 loc) • 559 B
TypeScript
import { IRuntimeAction } from '../../IRuntimeAction';
import { OutputEvent } from '../../OutputEvent';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { Subject } from 'rxjs';
/**
* Action to notify the runtime of a stopped event
*/
export declare class NotifyRuntimeAction implements IRuntimeAction {
event: IRuntimeEvent;
constructor(event: IRuntimeEvent);
name: string;
apply(_runtime: ITimerRuntime, input: Subject<IRuntimeEvent>, _output: Subject<OutputEvent>): void;
}