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