UNPKG

@antv/narrative-text-vis

Version:

React component of interactive narrative text

12 lines (11 loc) 514 B
import { ParagraphSpec } from '@antv/narrative-text-schema'; import { ThemeProps, ExtensionProps, ParagraphEvents } from '../interface'; declare type ParagraphProps = ThemeProps & ExtensionProps & ParagraphEvents & { /** * @description specification of paragraph text spec * @description.zh-CN 段落描述 json 信息 */ spec: ParagraphSpec; }; export declare function Paragraph({ spec, pluginManager, size, ...events }: ParagraphProps): JSX.Element; export { Headline } from './Headline';