UNPKG

dmeditor

Version:

dmeditor is a block-style visual editor. Data is in json format.

10 lines (9 loc) 251 B
import { ReactElement } from 'react'; export interface TabData { title: string; element: ReactElement; } export declare const PropertyTab: (props: { tabs: Array<TabData>; active?: number; }) => import("react/jsx-runtime").JSX.Element;