@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
19 lines (18 loc) • 651 B
TypeScript
import { OutputEvent } from '../../core/OutputEvent';
import { OutputEventType } from '../../core/OutputEventType';
export declare const CAST_NAMESPACE = "urn:x-cast:com.google.cast.wod-wiki";
/**
* All supported Chromecast event types
*/
export type ChromecastEventType = 'HANDSHAKE_ESTABLISHED' | 'HANDSHAKE_TERMINATED' | OutputEventType;
export declare class ReceiverEvent implements ChromecastReceiverEvent {
status: string;
message: OutputEvent;
timestamp: Date;
constructor(status: string, message: OutputEvent);
}
export interface ChromecastReceiverEvent {
status: string;
message: OutputEvent;
timestamp: Date;
}