NF
import { x, y, z } from "./bottom"
export function getXYZ({
xProps,
yProps,
zProps,
}: XYZProps): XYZ {
return {
x: x(xProps),
y: y(yProps),
z: z(zProps),
};
}
или
import { x, y, z } from "./bottom"
export function getXYZ(): XYZ {
return {
x: x,
y: y,
z: z,
};
}