UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

10 lines (9 loc) 290 B
import { LexicalCommand } from 'lexical'; export interface InsertImagePayload { altText: string; src: string; width: number; height: number; } export declare const INSERT_IMAGE_COMMAND: LexicalCommand<InsertImagePayload>; export default function ImagePlugin(): JSX.Element;