UNPKG

oom-editor

Version:

Awsome markdown editor for oom community!

14 lines (13 loc) 400 B
import React from "react"; import { EditResult } from "../edit/EditorFunctions"; interface ButtonWrapperProps { buttonTypes: any[]; textAreaRef: React.RefObject<HTMLTextAreaElement>; } interface ButtonProps { title: string; handleClickedButton: (editResult: EditResult) => void; locationOfCursorPos: number; content: string; } export type { ButtonWrapperProps, ButtonProps };