@formant/ava
Version:
A framework for automated visual analytics.
7 lines (6 loc) • 331 B
TypeScript
import type { InsightType, HomogeneousInsightType } from '../types';
import type { InsightNarrativeStrategy } from './strategy/base';
export default class InsightNarrativeStrategyFactory {
private static narrativeStrategyMap;
static getStrategy(type: InsightType | HomogeneousInsightType): InsightNarrativeStrategy<any>;
}