mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 17:29:31 +08:00
8 lines
270 B
Text
8 lines
270 B
Text
export = convertUnit;
|
|
/**
|
|
* @param {number} value
|
|
* @param {string} sourceUnit
|
|
* @param {string} targetUnit
|
|
* @param {number|false} precision
|
|
*/
|
|
declare function convertUnit(value: number, sourceUnit: string, targetUnit: string, precision: number | false): number;
|