UNPKG

@formant/ava

Version:

A framework for automated visual analytics.

9 lines (8 loc) 507 B
import { InsightNarrativeStrategy } from './base'; import type { InsightType, Language, InsightInfo, MajorityInfo } from '../../types'; import type { ParagraphSpec, Structure } from '../../../ntv/types'; export default class MajorityNarrativeStrategy extends InsightNarrativeStrategy<MajorityInfo> { static readonly insightType: InsightType; protected static structures: Record<Language, Structure[]>; generateTextSpec(insightInfo: InsightInfo<MajorityInfo>, lang: Language): ParagraphSpec[]; }