@making-sense/antlr-editor
Version:
ANTLR Typescript editor
11 lines (10 loc) • 349 B
TypeScript
/// <reference types="react" />
import { type CursorType } from "./Editor";
type EditorFooterProps = {
cursor: CursorType;
FooterComponent?: React.FC<{
cursor: CursorType;
}>;
};
declare const EditorFooter: ({ cursor, FooterComponent }: EditorFooterProps) => import("react/jsx-runtime").JSX.Element;
export default EditorFooter;