@formant/ava
Version:
A framework for automated visual analytics.
20 lines (19 loc) • 523 B
TypeScript
import type { RuleModule } from '../types';
/**
* @public
*/
export declare const CHART_RULE_ID: readonly string[];
/**
* @public
*/
export type ChartRuleID = (typeof CHART_RULE_ID)[number];
/**
* @public
*/
export declare const CHART_DESIGN_RULE_ID: readonly ["x-axis-line-fading", "bar-without-axis-min"];
/**
* @public
*/
export type ChartDesignRuleID = (typeof CHART_DESIGN_RULE_ID)[number];
export type RuleId = ChartRuleID | ChartDesignRuleID;
export declare const rules: Partial<Record<RuleId, RuleModule>>;