/** * @typedef CleanupListOfValuesParams * @property {number=} floatPrecision * @property {boolean=} leadingZero * @property {boolean=} defaultPx * @property {boolean=} convertToPx */ export const name: "cleanupListOfValues"; export const description: "rounds list of values to the fixed precision"; /** * Round list of values to the fixed precision. * * @example * * ⬇ * * * * ⬇ * * * @author kiyopikko * * @type {import('../lib/types.js').Plugin} */ export const fn: import("../lib/types.js").Plugin; export type CleanupListOfValuesParams = { floatPrecision?: number | undefined; leadingZero?: boolean | undefined; defaultPx?: boolean | undefined; convertToPx?: boolean | undefined; };