@chief-editor/runtime
Version:
React Runtime for Flow Editor
11 lines (10 loc) • 438 B
TypeScript
import { DomNode } from '@co-hooks/dom-node';
import { INodeType } from '@chief-editor/base';
import React, { CSSProperties } from 'react';
import { IRuntimeDispatcherProps } from '../types';
export declare const RuntimeDispatcher: React.MemoExoticComponent<(props: IRuntimeDispatcherProps) => JSX.Element>;
export interface IRuntimeListDispatcherProps {
node: DomNode<INodeType>;
style?: CSSProperties;
className?: string;
}