UNPKG

postcss-calc

Version:
10 lines (9 loc) 311 B
export type Node = import('../node.js').Node; export type RoundStrategy = 'nearest' | 'up' | 'down' | 'to-zero'; /** @typedef {'nearest' | 'up' | 'down' | 'to-zero'} RoundStrategy */ /** * @param {Node[]} args * @return {Node} */ declare function simplifyRound(args: Node[]): Node; export { simplifyRound };