itmar-block-packages
Version:
Common React components for WordPress custom blocks, now fully TypeScript-ready.
8 lines (7 loc) • 305 B
TypeScript
import { ElementType } from "react";
interface BlockEditWrapperProps {
lazyComponent: ElementType;
[key: string]: any;
}
declare function BlockEditWrapper({ lazyComponent: LazyComponent, ...props }: BlockEditWrapperProps): import("react/jsx-runtime").JSX.Element;
export default BlockEditWrapper;