@antv/narrative-text-vis
Version:
React component of interactive narrative text
8 lines (7 loc) • 361 B
TypeScript
import { TextParagraphSpec } from '@antv/narrative-text-schema';
import { ThemeProps, ExtensionProps, PhraseEvents } from '../interface';
declare type TextLineProps = ThemeProps & ExtensionProps & PhraseEvents & {
spec: TextParagraphSpec;
};
export declare function TextLine({ spec, size, pluginManager, ...events }: TextLineProps): JSX.Element;
export {};