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