@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
15 lines (14 loc) • 553 B
TypeScript
import { IRuntimeAction } from '../../IRuntimeAction';
import { OutputEvent } from '../../OutputEvent';
import { ITimerRuntime } from '../../ITimerRuntime';
import { IRuntimeEvent } from '../../IRuntimeEvent';
import { Subject } from 'rxjs';
/**
* Action that plays a sound during workout execution
*/
export declare class PlaySoundAction implements IRuntimeAction {
private soundType;
constructor(soundType: string);
name: string;
apply(_runtime: ITimerRuntime, _input: Subject<IRuntimeEvent>, _output: Subject<OutputEvent>): void;
}