import { ValueOf } from '@retikz/core'; import { z } from 'zod'; import { LayoutAnchor, LayoutPlacementKind, LayoutPlacementTarget, PlotLabelRole, PlotLabelType, PlotLayoutMode } from './constants'; import { LayoutPlacementSchema, PlotLabelSchema, PlotLayoutSchema } from './schema'; export type PlotLayoutModeValue = ValueOf; export type LayoutPlacementTargetValue = ValueOf; export type LayoutPlacementKindValue = ValueOf; export type PlotLabelTypeValue = ValueOf; export type PlotLabelRoleValue = ValueOf; export type LayoutAnchorValue = ValueOf; /** Plot 全局布局策略 */ export type IRPlotLayout = z.infer; /** Plot label 位置声明 */ export type IRPlotLayoutPlacement = z.infer; /** Plot label 条目 */ export type IRPlotLabel = z.infer; //# sourceMappingURL=types.d.ts.map