UNPKG

@echarts-component/vue

Version:
10 lines (9 loc) 576 B
import { AngleAxisOption } from 'echarts/types/dist/shared'; import { LabelOption } from '../common/type'; export type TextType = "axisLabel"; export type TextOptions = LabelOption; export type { AngleAxisOption }; export type AngleAxis = Partial<Omit<AngleAxisOption, "axisLine" | "axisTick" | "minorTick" | "axisLabel" | "splitLine" | "minorSplitLine" | "splitArea" | "axisPointer" | "tooltip">>; export declare const DefaultAngleAxis: AngleAxis; export declare const DefaultAxisLabelOptions: LabelOption; export declare const TextMapDefault: Record<TextType, TextOptions>;