@bitcobblers/wod-wiki-library
Version:
A specialized markdown-like workout syntax editor and runtime for defining workouts
15 lines (14 loc) • 522 B
TypeScript
import { default as React } from 'react';
import { WikiContainer } from '../../components/WikiContainer';
/**
*
* A wrapper component for WikiContainer that displays JSON state for debugging
* This component provides visualization panels for:
* 1. The compiled script structure
* 2. The workout results as they are generated
*/
interface EditorWithStateProps extends React.ComponentProps<typeof WikiContainer> {
debug?: boolean;
}
export declare const EditorWithState: React.FC<EditorWithStateProps>;
export {};