UNPKG

@bitcobblers/wod-wiki-library

Version:

A specialized markdown-like workout syntax editor and runtime for defining workouts

10 lines (9 loc) 379 B
import { default as React, MutableRefObject } from 'react'; import { ITimerRuntime } from '../../core/ITimerRuntime'; import { RuntimeSpan } from '../../core/RuntimeSpan'; interface AnalyticsViewProps { results: [RuntimeSpan, boolean][]; runtime: MutableRefObject<ITimerRuntime | undefined>; } export declare const AnalyticsView: React.FC<AnalyticsViewProps>; export {};