import { z } from 'zod'; import { PlotAxisThemeSchema, PlotPaletteThemeSchema, PlotThemeSchema } from './schema'; /** Plot 主题:JSON-safe 的全局视觉默认值 */ export type IRPlotTheme = z.infer; /** Plot axis 主题默认值 */ export type IRPlotAxisTheme = z.infer; /** Plot palette 主题默认值 */ export type IRPlotPaletteTheme = z.infer; //# sourceMappingURL=types.d.ts.map