@chamn/engine
Version:
8 lines (7 loc) • 304 B
TypeScript
import { CNode, CRootNode } from '@chamn/model';
import { CPluginCtx } from '../../core/pluginManager';
export type EventPanelProps = {
node: CNode | CRootNode | null;
pluginCtx: CPluginCtx;
};
export declare const EventPanel: (props: EventPanelProps) => import("react/jsx-runtime").JSX.Element;