Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

10 lines
367 B
TypeScript

import { ComputedAxis } from "../models/axis.js";
import { ZAxisDefaultized } from "../models/z-axis.js";
import { ColorLegendSelector } from "./colorLegend.types.js";
/**
* Helper to select an axis definition according to its direction and id.
*/
export declare function useAxis({
axisDirection,
axisId
}: ColorLegendSelector): ZAxisDefaultized | ComputedAxis;