mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 09:29:29 +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;
|