UNPKG

@antv/narrative-text-schema

Version:

Json schema of narrative text visualization

12 lines (11 loc) 421 B
import type { NarrativeTextSpec } from '../schema'; import type { Structure, Variable, StructureTemp } from './types'; /** * use structure and variables to generate narrative text spec */ declare function generateTextSpec({ structures, structureTemps, variables, }: { structures: Structure[]; structureTemps?: StructureTemp[]; variables?: Variable[]; }): NarrativeTextSpec; export default generateTextSpec;