5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
import type { RoundingMethod } from "../types.js";
|
|
export declare function getRoundingMethod(
|
|
method: RoundingMethod | undefined,
|
|
): (x: number) => number;
|