UNPKG

@bitcobblers/wod-wiki-library

Version:

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

13 lines (12 loc) 430 B
import { default as React } from 'react'; import { WorkoutEntry } from './WorkbookStorage'; interface WorkbookNavigationProps { activeId?: string; onSelectWorkout: (workout: WorkoutEntry) => void; onCreateWorkout: () => void; onDeleteWorkout: (id: string) => void; isCollapsed: boolean; onToggleCollapse: () => void; } export declare const WorkbookNavigation: React.FC<WorkbookNavigationProps>; export {};