@formant/ava-react
Version:
React components of AVA.
24 lines (23 loc) • 865 B
TypeScript
import { InsightType } from '@formant/ava';
/** class name prefix for InsightCard, avar-insight-card */
export declare const INSIGHT_CARD_PREFIX_CLS: string;
export declare const ALGORITHM_NAME_MAP: Record<InsightType, string>;
export declare const ALGORITHM_NAME_MAP_ZH: Record<InsightType, string>;
/** default minimum height for card */
export declare const CARD_CONTENT_HEIGHT = 48;
/** default chart height in card */
export declare const CHART_HEIGHT = 280;
/** chart carousel plugin key */
export declare const DISPLAY_CHARTS_PLUGIN_KEY = "charts";
/** subspace description plugin key */
export declare const SUBSPACE_DESCRIPTION_PLUGIN_KEY = "subspaceDescription";
export declare const EXPORT_DATA_LABEL: {
'zh-CN': {
insightInfo: string;
spec: string;
};
'en-US': {
insightInfo: string;
spec: string;
};
};