import { ValueOf } from '@retikz/core'; import { z } from 'zod'; import { PlotLayerZIndex } from './constants'; import { PlotLayerSchema } from './schema'; export type PlotLayerZIndexValue = ValueOf; /** Plot 图层声明:一个 mark 及其局部 transform / encoding 配置 */ export type IRPlotLayer = z.infer; //# sourceMappingURL=types.d.ts.map