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