@formant/ava
Version:
A framework for automated visual analytics.
9 lines (8 loc) • 519 B
TypeScript
import { InsightNarrativeStrategy } from './base';
import type { InsightType, Language, InsightInfo, LowVarianceInfo } from '../../types';
import type { ParagraphSpec, Structure } from '../../../ntv/types';
export default class LowVarianceNarrativeStrategy extends InsightNarrativeStrategy<LowVarianceInfo> {
static readonly insightType: InsightType;
protected static structures: Record<Language, Structure[]>;
generateTextSpec(insightInfo: InsightInfo<LowVarianceInfo>, lang: Language): ParagraphSpec[];
}