UNPKG

@antv/t8

Version:

T8 is a text visualization solution for unstructured data within the AntV technology stack, and it is a declarative T8 markdown syntax that can be used to describe the content of data interpretation reports.

42 lines (39 loc) 1.85 kB
import { createMetricName } from './createMetricName.js'; import { createMetricValue } from './createMetricValue.js'; import { createDeltaValue, createRatioValue } from './createCompare.js'; import { createOtherMetricValue } from './createOtherMetricValue.js'; import { createContributeRatio } from './createContributeRatio.js'; import { createDimensionValue } from './createDimensionValue.js'; import { createProportion } from './createProportion.js'; import { createTimeDesc } from './createTimeDesc.js'; import { createTrendDesc } from './createTrendDesc.js'; import { createRank } from './createRank.js'; import { createDifference } from './createDifference.js'; import { createAnomaly } from './createAnomaly.js'; import { createAssociation } from './createAssociation.js'; import { createDistribution } from './createDistribution.js'; import { createSeasonality } from './createSeasonality.js'; /** * export all entity phrase factory functions. * user can use these factory functions to create entity phrase descriptors quickly to keep the original descriptor. */ var presetPlugins = [ createMetricName(), createMetricValue(), createDeltaValue(), createRatioValue(), createOtherMetricValue(), createContributeRatio(), createDimensionValue(), createProportion(), createTimeDesc(), createTrendDesc(), createRank(), createDifference(), createAnomaly(), createAssociation(), createDistribution(), createSeasonality(), ]; export { createAnomaly, createAssociation, createContributeRatio, createDeltaValue, createDifference, createDimensionValue, createDistribution, createMetricName, createMetricValue, createOtherMetricValue, createProportion, createRank, createRatioValue, createSeasonality, createTimeDesc, createTrendDesc, presetPlugins }; //# sourceMappingURL=index.js.map